Revert 51775.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51795 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng
2008-05-30 22:47:19 +00:00
parent 8666cc3b99
commit 652f7ea955
13 changed files with 40 additions and 45 deletions
+2 -2
View 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;
}