about summary refs log tree commit diff
path: root/tests/codegen-llvm/mir-inlined-line-numbers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen-llvm/mir-inlined-line-numbers.rs')
-rw-r--r--tests/codegen-llvm/mir-inlined-line-numbers.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/codegen-llvm/mir-inlined-line-numbers.rs b/tests/codegen-llvm/mir-inlined-line-numbers.rs
new file mode 100644
index 00000000000..cfe43a6cf89
--- /dev/null
+++ b/tests/codegen-llvm/mir-inlined-line-numbers.rs
@@ -0,0 +1,25 @@
+//@ compile-flags: -Copt-level=3 -g
+
+#![crate_type = "lib"]
+
+#[inline(always)]
+fn foo() {
+    bar();
+}
+
+#[inline(never)]
+#[no_mangle]
+fn bar() {
+    panic!();
+}
+
+#[no_mangle]
+pub fn example() {
+    foo();
+}
+
+// CHECK-LABEL: @example
+// CHECK:   tail call void @bar(){{( #[0-9]+)?}}, !dbg [[DBG_ID:![0-9]+]]
+// CHECK: [[DBG_ID]] = !DILocation(line: 7,
+// CHECK-SAME:                     inlinedAt: [[INLINE_ID:![0-9]+]])
+// CHECK: [[INLINE_ID]] = !DILocation(line: 18,