mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-19 19:03:50 +00:00
Fixing a type width warning with MSVC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3be7584f40
commit
236bcf1fcd
@ -689,7 +689,7 @@ public:
|
||||
}
|
||||
|
||||
virtual Init *getBit(unsigned Bit) const {
|
||||
return BitInit::get((Value & (1 << Bit)) != 0);
|
||||
return BitInit::get((Value & (1ULL << Bit)) != 0);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user