diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
commit | 2b6b257f4e5503a7a2675bdb8735693db769f75c (patch) | |
tree | e85e046ae7003fe3bcc8b5454cd0fa3f7407b470 /test/CodeGen/instrument-functions.c | |
parent | b4348ed0b7e90c0831b925fbee00b5f179a99796 (diff) |
Notes
Diffstat (limited to 'test/CodeGen/instrument-functions.c')
-rw-r--r-- | test/CodeGen/instrument-functions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/instrument-functions.c b/test/CodeGen/instrument-functions.c index d80385e2239a..454dc4de5220 100644 --- a/test/CodeGen/instrument-functions.c +++ b/test/CodeGen/instrument-functions.c @@ -1,9 +1,9 @@ -// RUN: %clang_cc1 -S -emit-llvm -o - %s -finstrument-functions | FileCheck %s +// RUN: %clang_cc1 -S -debug-info-kind=standalone -emit-llvm -o - %s -finstrument-functions | FileCheck %s // CHECK: @test1 int test1(int x) { -// CHECK: __cyg_profile_func_enter -// CHECK: __cyg_profile_func_exit +// CHECK: call void @__cyg_profile_func_enter({{.*}}, !dbg +// CHECK: call void @__cyg_profile_func_exit({{.*}}, !dbg // CHECK: ret return x; } |