mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 23:29:51 +00:00
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
This commit is contained in:
parent
412a5b3d9b
commit
cfb7e2a038
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user