summary refs log tree commit diff
path: root/tests/codegen/debug-column.rs
diff options
context:
space:
mode:
authorPietro Albini <pietro.albini@ferrous-systems.com>2023-05-23 15:11:17 +0200
committerPietro Albini <pietro.albini@ferrous-systems.com>2023-05-23 16:54:30 +0200
commit5fdeae610db96d048090b1efaf6b7a2f54aeda12 (patch)
tree5f374da14c031a5af61d6c0b64adb92c96827ff0 /tests/codegen/debug-column.rs
parentf3d597b31c0f101a02c230798afa31a36bdacbc6 (diff)
downloadrust-5fdeae610db96d048090b1efaf6b7a2f54aeda12.tar.gz
rust-5fdeae610db96d048090b1efaf6b7a2f54aeda12.zip
codegen: allow extra attributes to functions when panic=abort
When compiling with panic=abort (or using a target that doesn't have
unwinding support), the compiler adds the "nounwind" attribute to
functions. This results in a different LLVM IR, which results in a #NNN
added after the function name:

    tail call void @bar() #13, !dbg !467
    attributes #13 = { nounwind }

...instead of:

    tail call void @bar(), !dbg !467

This commit changes the matchers to swallow the #NNN, as it's not needed
for these specific tests.
Diffstat (limited to 'tests/codegen/debug-column.rs')
-rw-r--r--tests/codegen/debug-column.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codegen/debug-column.rs b/tests/codegen/debug-column.rs
index e61642b8e1b..f3b19a2eb2f 100644
--- a/tests/codegen/debug-column.rs
+++ b/tests/codegen/debug-column.rs
@@ -6,11 +6,11 @@
 fn main() {
     unsafe {
         // Column numbers are 1-based. Regression test for #65437.
-        // CHECK: call void @giraffe(), !dbg [[A:!.*]]
+        // CHECK: call void @giraffe(){{( #[0-9]+)?}}, !dbg [[A:!.*]]
         giraffe();
 
         // Column numbers use byte offests. Regression test for #67360
-        // CHECK: call void @turtle(), !dbg [[B:!.*]]
+        // CHECK: call void @turtle(){{( #[0-9]+)?}}, !dbg [[B:!.*]]
 /* ż */ turtle();
 
         // CHECK: [[A]] = !DILocation(line: 10, column: 9,