mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
Remove warnings when using -Wshorten-64-to-32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eca2f99958
commit
c2e735359f
@ -960,14 +960,14 @@ public:
|
||||
InputIterator ArgBegin, InputIterator ArgEnd,
|
||||
const std::string &Name = "",
|
||||
Instruction *InsertBefore = 0) {
|
||||
return new(ArgEnd - ArgBegin + 1)
|
||||
return new((unsigned)(ArgEnd - ArgBegin + 1))
|
||||
CallInst(Func, ArgBegin, ArgEnd, Name, InsertBefore);
|
||||
}
|
||||
template<typename InputIterator>
|
||||
static CallInst *Create(Value *Func,
|
||||
InputIterator ArgBegin, InputIterator ArgEnd,
|
||||
const std::string &Name, BasicBlock *InsertAtEnd) {
|
||||
return new(ArgEnd - ArgBegin + 1)
|
||||
return new((unsigned)(ArgEnd - ArgBegin + 1))
|
||||
CallInst(Func, ArgBegin, ArgEnd, Name, InsertAtEnd);
|
||||
}
|
||||
static CallInst *Create(Value *F, Value *Actual, const std::string& Name = "",
|
||||
@ -1685,7 +1685,7 @@ public:
|
||||
|
||||
~BranchInst() {
|
||||
if (NumOperands == 1)
|
||||
NumOperands = (unsigned)(uintptr_t)((Use*)this - OperandList);
|
||||
NumOperands = (unsigned)((Use*)this - OperandList);
|
||||
}
|
||||
|
||||
/// Transparently provide more efficient getOperand methods.
|
||||
|
Loading…
x
Reference in New Issue
Block a user