diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-11 10:40:06 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-11 10:40:47 -0800 |
commit | 8a44d4850d268fdcc61b95fdd32233b7a3a15e9b (patch) | |
tree | b546e164207c2e8cae6fa0ce9a6506c91fc71190 | |
parent | b9213dfec4d8ce42d90507c25545564f4a0bbfb8 (diff) | |
download | bcm5719-llvm-8a44d4850d268fdcc61b95fdd32233b7a3a15e9b.tar.gz bcm5719-llvm-8a44d4850d268fdcc61b95fdd32233b7a3a15e9b.zip |
[debuginfo] Update test to account for missing __debug_macinfo
We no longer emit this section if it's empty.
-rw-r--r-- | debuginfo-tests/llgdb-tests/apple-accel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/debuginfo-tests/llgdb-tests/apple-accel.cpp b/debuginfo-tests/llgdb-tests/apple-accel.cpp index 4a73afe8011..6a94e550118 100644 --- a/debuginfo-tests/llgdb-tests/apple-accel.cpp +++ b/debuginfo-tests/llgdb-tests/apple-accel.cpp @@ -8,7 +8,7 @@ // RUN: %clang %s %target_itanium_abi_host_triple -gdwarf-4 -O0 -c -g -o %t-ex // RUN: llvm-objdump -section-headers %t-ex | FileCheck %s -// A function in a different section forces the compiler to create the +// A function in a different section forces the compiler to create the // __debug_ranges section. __attribute__((section("1,__text_foo"))) void foo() {} int main (int argc, char const *argv[]) { return argc; } @@ -17,7 +17,6 @@ int main (int argc, char const *argv[]) { return argc; } // CHECK-NEXT: __debug_abbrev // CHECK-NEXT: __debug_info // CHECK-NEXT: __debug_ranges -// CHECK-NEXT: __debug_macinfo // CHECK-NEXT: __apple_names // CHECK-NEXT: __apple_objc // CHECK-NEXT: __apple_namespac |