From: Duraid Madina Date: Mon, 11 Apr 2005 07:16:39 +0000 (+0000) Subject: hmm, should probably change addImm() to take 64-bit arguments one day anyway. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=21478e55dbd45c0aaa7c6c3e06f59516af79b624;p=oota-llvm.git 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 --- diff --git a/lib/Target/IA64/IA64ISelPattern.cpp b/lib/Target/IA64/IA64ISelPattern.cpp index 996f722cbe7..05d08e18abb 100644 --- a/lib/Target/IA64/IA64ISelPattern.cpp +++ b/lib/Target/IA64/IA64ISelPattern.cpp @@ -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; }