summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-01-02 18:48:24 +0000
committerAdrian Prantl <aprantl@apple.com>2014-01-02 18:48:24 +0000
commitf828e82891fe49152f24b7a6cb8145a07271f573 (patch)
tree6bb4026ff95534f43981209e2af97b351a1ec4b1 /lib
parent163868fec5e196693f58ba111dbe13ef7a2a76cc (diff)
downloadllvm-f828e82891fe49152f24b7a6cb8145a07271f573.tar.gz
llvm-f828e82891fe49152f24b7a6cb8145a07271f573.tar.bz2
llvm-f828e82891fe49152f24b7a6cb8145a07271f573.tar.xz
Revert "Debug info: Add enumerators to the __apple_names accelerator table."
This reverts r197927 until the discussion on llvm-commits comes to a conclusion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfUnit.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfUnit.cpp b/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
index f9611545f8..aa04a46676 100644
--- a/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
@@ -1765,9 +1765,6 @@ void DwarfUnit::constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy) {
int64_t Value = Enum.getEnumValue();
addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata,
Value);
-
- // Add the enumerator to the __apple_names accelerator table.
- addAccelName(Name, Enumerator);
}
}
DIType DTy = resolve(CTy.getTypeDerivedFrom());