diff options
author | Eric Liu <ioeric@google.com> | 2018-12-17 14:14:40 +0000 |
---|---|---|
committer | Eric Liu <ioeric@google.com> | 2018-12-17 14:14:40 +0000 |
commit | 6c933a2bed30be7009b1994d112e188343d40265 (patch) | |
tree | 6f7194ff0beec7ee8431f46f31d8374894cc1965 /llvm/test/DebugInfo/llvm-symbolizer.test | |
parent | 450606759351dabe1b975e3b48be80db9030c51a (diff) | |
download | bcm5719-llvm-6c933a2bed30be7009b1994d112e188343d40265.tar.gz bcm5719-llvm-6c933a2bed30be7009b1994d112e188343d40265.zip |
Revert "DebugInfo: Assume an absence of ranges or high_pc on a CU means the CU is empty (devoid of code addresses)"
This reverts commit r349333. It caused internal test to fail. I have
sent more information to the author.
llvm-svn: 349353
Diffstat (limited to 'llvm/test/DebugInfo/llvm-symbolizer.test')
-rw-r--r-- | llvm/test/DebugInfo/llvm-symbolizer.test | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/DebugInfo/llvm-symbolizer.test b/llvm/test/DebugInfo/llvm-symbolizer.test index 5a5e06c3789..a6a15491c20 100644 --- a/llvm/test/DebugInfo/llvm-symbolizer.test +++ b/llvm/test/DebugInfo/llvm-symbolizer.test @@ -1,10 +1,10 @@ RUN: rm -rf %t RUN: mkdir -p %t -RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x40113f" > %t.input -RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64.debuglink 0x40113f" >> %t.input -RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x401020" >> %t.input -RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x40110e" >> %t.input -RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x401160" >> %t.input +RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x400559" > %t.input +RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64.debuglink 0x400559" >> %t.input +RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x400436" >> %t.input +RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x400528" >> %t.input +RUN: echo "%p/Inputs/dwarfdump-test.elf-x86-64 0x400586" >> %t.input RUN: echo "%p/Inputs/dwarfdump-test2.elf-x86-64 0x4004e8" >> %t.input RUN: echo "%p/Inputs/dwarfdump-test2.elf-x86-64 0x4004f4" >> %t.input RUN: echo "%p/Inputs/dwarfdump-test4.elf-x86-64 0x62c" >> %t.input @@ -181,8 +181,8 @@ UNKNOWN-ARCH-NOT: main UNKNOWN-ARCH: ?? UNKNOWN-ARCH-NOT: main -RUN: echo "0x40113f" > %t.input4 -RUN: echo "0x401020" >> %t.input4 +RUN: echo "0x400559" > %t.input4 +RUN: echo "0x400436" >> %t.input4 RUN: llvm-symbolizer --obj %p/Inputs/dwarfdump-test.elf-x86-64 < %t.input4 \ RUN: | FileCheck %s --check-prefix=BINARY @@ -190,9 +190,9 @@ BINARY: main BINARY-NEXT: /tmp/dbginfo{{[/\\]}}dwarfdump-test.cc:16 BINARY: _start -RUN: echo "0x401140" > %t.input5 -RUN: echo "0x401020" >> %t.input5 -RUN: echo "0x401120" >> %t.input5 +RUN: echo "0x400720" > %t.input5 +RUN: echo "0x4004a0" >> %t.input5 +RUN: echo "0x4006f0" >> %t.input5 RUN: llvm-symbolizer --obj %p/Inputs/llvm-symbolizer-test.elf-x86-64 < %t.input5 \ RUN: | FileCheck %s --check-prefix=BINARY_C |