diff options
author | David Blaikie <dblaikie@gmail.com> | 2019-04-23 15:03:24 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2019-04-23 15:03:24 +0000 |
commit | a2470a4653174067491618b18a8ae596f179cefb (patch) | |
tree | 21a1a178586d80c3f730e35848e1e74768e75aef /llvm/test/DebugInfo/X86/accel-tables.ll | |
parent | efd94c56badf696ed7193f4a83c7a59f7dfbfc6e (diff) | |
download | bcm5719-llvm-a2470a4653174067491618b18a8ae596f179cefb.tar.gz bcm5719-llvm-a2470a4653174067491618b18a8ae596f179cefb.zip |
Revert "DebugInfo: Emit only one kind of accelerated access/name table"
Regresses some apple_names situations - still investigating.
This reverts commit r358931.
llvm-svn: 358997
Diffstat (limited to 'llvm/test/DebugInfo/X86/accel-tables.ll')
-rw-r--r-- | llvm/test/DebugInfo/X86/accel-tables.ll | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/llvm/test/DebugInfo/X86/accel-tables.ll b/llvm/test/DebugInfo/X86/accel-tables.ll index 7b0377a1f99..813b66f1aeb 100644 --- a/llvm/test/DebugInfo/X86/accel-tables.ll +++ b/llvm/test/DebugInfo/X86/accel-tables.ll @@ -4,11 +4,11 @@ ; RUN: llc -mtriple=x86_64-apple-darwin12 -filetype=obj < %s \ ; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=APPLE %s ; RUN: llc -mtriple=x86_64-apple-darwin12 -filetype=obj -debugger-tune=gdb < %s \ -; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=PUB %s +; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=NONE %s ; Linux does has debug_names tables only if we explicitly tune for lldb ; RUN: llc -mtriple=x86_64-pc-linux -filetype=obj < %s \ -; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=PUB %s +; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=NONE %s ; RUN: llc -mtriple=x86_64-pc-linux -filetype=obj -debugger-tune=lldb < %s \ ; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=DEBUG_NAMES %s @@ -23,25 +23,15 @@ ; RUN: | llvm-readobj -sections - | FileCheck --check-prefix=APPLE %s ; APPLE-NOT: debug_names -; APPLE-NOT: pubnames ; APPLE: apple_names ; APPLE-NOT: debug_names -; APPLE-NOT: pubnames - -; PUB-NOT: apple_names -; PUB-NOT: debug_names -; PUB: pubnames -; PUB-NOT: apple_names -; PUB-NOT: debug_names ; NONE-NOT: apple_names ; NONE-NOT: debug_names ; DEBUG_NAMES-NOT: apple_names -; DEBUG_NAMES-NOT: pubnames ; DEBUG_NAMES: debug_names ; DEBUG_NAMES-NOT: apple_names -; DEBUG_NAMES-NOT: pubnames @var = thread_local global i32 0, align 4, !dbg !0 |