Use MachineBasicBlock::transferSuccessors.
[oota-llvm.git] / include / llvm / CodeGen / MachineRelocation.h
index 775f6115b777f990f5a607202f07fb420f69f018..fa23a4d1c4b0f0d602d5eb0c72859964cf3cf063 100644 (file)
@@ -133,7 +133,7 @@ public:
   /// symbol, like "free".
   ///
   static MachineRelocation getExtSym(intptr_t offset, unsigned RelocationType, 
-                                     const char *es, intptr_t cst = 0,
+                                     const char *ES, intptr_t cst = 0,
                                      bool GOTrelative = 0) {
     assert((RelocationType & ~63) == 0 && "Relocation type too large!");
     MachineRelocation Result;
@@ -143,7 +143,7 @@ public:
     Result.AddrType = isExtSym;
     Result.NeedStub = true;
     Result.GOTRelative = GOTrelative;
-    Result.Target.ExtSym = es;
+    Result.Target.ExtSym = ES;
     return Result;
   }