blob: 5d83cbc4ab195130c2a72a8b015e82801534d50b [file] [log] [blame]
David Majnemerdc012fa2015-04-22 21:38:15 +00001// RUN: %clang_cc1 -O1 -triple x86_64-none-linux-gnu -emit-llvm -gline-tables-only %s -o - | FileCheck %s
2
3// Inserting lifetime markers should not affect debuginfo
4
5extern int x;
6
7// CHECK-LABEL: define i32 @f
8int f() {
9 int *p = &x;
10// CHECK: ret i32 %{{.*}}, !dbg [[DI:![0-9]*]]
11// CHECK: [[DI]] = !MDLocation(line: [[@LINE+1]]
12 return *p;
13}