diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-01-30 05:20:31 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-01-30 05:20:31 +0000 |
commit | f12260caf188a01c7bedb99a25b6bfa7515378af (patch) | |
tree | 8c58fa66bcc823ced575f2691584a04d8d9e85e1 /llvm/tools/llvm-readobj/ARMAttributeParser.cpp | |
parent | ef1d59a1757e1b38b47fa386c74e669b385047fc (diff) | |
download | bcm5719-llvm-f12260caf188a01c7bedb99a25b6bfa7515378af.tar.gz bcm5719-llvm-f12260caf188a01c7bedb99a25b6bfa7515378af.zip |
tools: repair Windows build
exp2 is not available on Windows. Fortunately, we are calculating powers of 2
with expontents within the range of [4,12]. Simply use an equivalent bitshift
operation to repair compilation with MSVC which does not provide this standard
function.
llvm-svn: 200454
Diffstat (limited to 'llvm/tools/llvm-readobj/ARMAttributeParser.cpp')
-rw-r--r-- | llvm/tools/llvm-readobj/ARMAttributeParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-readobj/ARMAttributeParser.cpp b/llvm/tools/llvm-readobj/ARMAttributeParser.cpp index a9f6a2eba61..26b8f6e91ac 100644 --- a/llvm/tools/llvm-readobj/ARMAttributeParser.cpp +++ b/llvm/tools/llvm-readobj/ARMAttributeParser.cpp @@ -321,7 +321,7 @@ void ARMAttributeParser::ABI_align_needed(AttrType Tag, const uint8_t *Data, if (Value < countof(Strings)) Description = StringRef(Strings[Value]); else if (Value <= 12) - Description = Twine("8-byte alignment, ") + utostr(exp2(Value)) + Description = Twine("8-byte alignment, ") + utostr(1 << Value) + Twine("-byte extended alignment"); else Description = "Invalid"; @@ -342,7 +342,7 @@ void ARMAttributeParser::ABI_align_preserved(AttrType Tag, const uint8_t *Data, if (Value < countof(Strings)) Description = StringRef(Strings[Value]); else if (Value <= 12) - Description = Twine("8-byte stack alignment, ") + utostr(exp2(Value)) + Description = Twine("8-byte stack alignment, ") + utostr(1 << Value) + Twine("-byte data alignment"); else Description = "Invalid"; |