rename addU64Imm() to addImm64()
authorDuraid Madina <duraid@octopus.com.au>
Mon, 11 Apr 2005 07:14:41 +0000 (07:14 +0000)
committerDuraid Madina <duraid@octopus.com.au>
Mon, 11 Apr 2005 07:14:41 +0000 (07:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21223 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineInstrBuilder.h

index ded06fc7d1fe15b6a56ea05d5c5eae56469c5322..060f90c53fd8e553b622f549f1897bf2a3e685d0 100644 (file)
@@ -108,9 +108,9 @@ public:
     return *this;
   }
 
-  /// addU64Imm - Add a new 64-bit immediate operand...
+  /// addImm64 - Add a new 64-bit immediate operand...
   ///
-  const MachineInstrBuilder &addU64Imm(uint64_t Val) const {
+  const MachineInstrBuilder &addImm64(uint64_t Val) const {
     MI->addZeroExtImm64Operand(Val);
     return *this;
   }