mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Prevent warning about conversion from 64-bit to 32-bit by (yuck) casting...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56359 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
015b714f29
commit
135ccbd74f
@ -753,7 +753,7 @@ public:
|
||||
/// operands replaced with the specified values. The specified operands must
|
||||
/// match count and type with the existing ones.
|
||||
Constant *getWithOperands(const std::vector<Constant*> &Ops) const {
|
||||
return getWithOperands(&Ops[0], Ops.size());
|
||||
return getWithOperands(&Ops[0], (unsigned)Ops.size());
|
||||
}
|
||||
Constant *getWithOperands(Constant* const *Ops, unsigned NumOps) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user