projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e04455d
)
Silencing an MSVC C4334 warning ('<<' : result of 32-bit shift implicitly converted...
author
Aaron Ballman
<aaron@aaronballman.com>
Wed, 20 Aug 2014 12:14:35 +0000
(12:14 +0000)
committer
Aaron Ballman
<aaron@aaronballman.com>
Wed, 20 Aug 2014 12:14:35 +0000
(12:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216067
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/AArch64/AArch64FastISel.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/AArch64/AArch64FastISel.cpp
b/lib/Target/AArch64/AArch64FastISel.cpp
index 90c509d4ce072fcc16a873973058163e7a12b66e..7320bb89dc47a2783d268f4e316d3f8f0baaa854 100644
(file)
--- a/
lib/Target/AArch64/AArch64FastISel.cpp
+++ b/
lib/Target/AArch64/AArch64FastISel.cpp
@@
-528,7
+528,7
@@
bool AArch64FastISel::ComputeAddress(const Value *Obj, Address &Addr, Type *Ty)
NumBytes = 0;
}
- if (NumBytes != (1UL << Val))
+ if (NumBytes != (1UL
L
<< Val))
break;
Addr.setShift(Val);