Home
last modified time | relevance | path

Searched refs:LMAValue (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp578 auto LMAValue = getAsInteger<int64_t>(StringValue); in parseChangeSectionLMA() local
579 if (!LMAValue) in parseChangeSectionLMA()
580 return createStringError(LMAValue.getError(), in parseChangeSectionLMA()
584 return *LMAValue; in parseChangeSectionLMA()
870 Expected<int64_t> LMAValue = in parseObjcopyOptions() local
872 if (!LMAValue) in parseObjcopyOptions()
873 return LMAValue.takeError(); in parseObjcopyOptions()
874 Config.ChangeSectionLMAValAll = *LMAValue; in parseObjcopyOptions()