int64_t -> int
authorChris Lattner <sabre@nondot.org>
Sun, 29 Feb 2004 05:07:02 +0000 (05:07 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 29 Feb 2004 05:07:02 +0000 (05:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11977 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineInstr.cpp

index 1e77988be5de3c99f670c715368cb2ac26bf1d73..b2b3caa0e6c0667554025f414ddfee10990a1afa 100644 (file)
@@ -107,7 +107,7 @@ void MachineInstr::SetMachineOperandVal(unsigned i,
 void
 MachineInstr::SetMachineOperandConst(unsigned i,
                                      MachineOperand::MachineOperandType opTy,
-                                     int64_t intValue) {
+                                     int intValue) {
   assert(i < getNumOperands());          // must be explicit op
   assert(TargetInstrDescriptors[Opcode].resultPos != (int) i &&
          "immed. constant cannot be defined");