summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Liu <jasonliu.development@gmail.com>2019-10-09 16:24:25 +0000
committerJason Liu <jasonliu.development@gmail.com>2019-10-09 16:24:25 +0000
commit5448fac509ff7aee9b73c8fea05daad2032bf69b (patch)
tree3259d007b177f72ccf8c3a6b54d1b4bb6775e152
parent939411c1aaa8830de2273849d5b8417788a25f67 (diff)
downloadbcm5719-llvm-5448fac509ff7aee9b73c8fea05daad2032bf69b.tar.gz
bcm5719-llvm-5448fac509ff7aee9b73c8fea05daad2032bf69b.zip
[NFC] Remove files got accidentally upload in llvm-svn 374179
llvm-svn: 374181
-rw-r--r--llvm/D68650.diff34
1 files changed, 0 insertions, 34 deletions
diff --git a/llvm/D68650.diff b/llvm/D68650.diff
deleted file mode 100644
index 063f1b8ae90..00000000000
--- a/llvm/D68650.diff
+++ /dev/null
@@ -1,34 +0,0 @@
-Index: llvm/include/llvm/Object/XCOFFObjectFile.h
-===================================================================
---- llvm/include/llvm/Object/XCOFFObjectFile.h
-+++ llvm/include/llvm/Object/XCOFFObjectFile.h
-@@ -113,7 +113,12 @@
- };
-
- struct XCOFFCsectAuxEnt32 {
-- support::ubig32_t SectionLen;
-+ support::ubig32_t
-+ SectionOrLength; // If the symbol type is XTY_SD or XTY_CM, the csect
-+ // length.
-+ // If the symbol type is XTY_LD, the symbol table
-+ // index of the containing csect.
-+ // If the symbol type is XTY_ER, 0.
- support::ubig32_t ParameterHashIndex;
- support::ubig16_t TypeChkSectNum;
- uint8_t SymbolAlignmentAndType;
-Index: llvm/tools/llvm-readobj/XCOFFDumper.cpp
-===================================================================
---- llvm/tools/llvm-readobj/XCOFFDumper.cpp
-+++ llvm/tools/llvm-readobj/XCOFFDumper.cpp
-@@ -213,9 +213,9 @@
- W.printNumber("Index",
- Obj.getSymbolIndex(reinterpret_cast<uintptr_t>(AuxEntPtr)));
- if ((AuxEntPtr->SymbolAlignmentAndType & SymbolTypeMask) == XCOFF::XTY_LD)
-- W.printNumber("ContainingCsectSymbolIndex", AuxEntPtr->SectionLen);
-+ W.printNumber("ContainingCsectSymbolIndex", AuxEntPtr->SectionOrLength);
- else
-- W.printNumber("SectionLen", AuxEntPtr->SectionLen);
-+ W.printNumber("SectionLen", AuxEntPtr->SectionOrLength);
- W.printHex("ParameterHashIndex", AuxEntPtr->ParameterHashIndex);
- W.printHex("TypeChkSectNum", AuxEntPtr->TypeChkSectNum);
- // Print out symbol alignment and type.
OpenPOWER on IntegriCloud