hmm, should probably change addImm() to take 64-bit arguments one day anyway.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21224 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duraid Madina 2005-04-11 07:16:39 +00:00
parent 2d4c883118
commit 21478e55db

View File

@ -667,7 +667,7 @@ unsigned ISel::SelectExpr(SDOperand N) {
/* otherwise, our immediate is big, so we use movl */
uint64_t Imm = immediate;
BuildMI(BB, IA64::MOVLIMM64, 1, Result).addU64Imm(Imm);
BuildMI(BB, IA64::MOVLIMM64, 1, Result).addImm64(Imm);
return Result;
}