Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -S -debug-info-kind=standalone -emit-llvm -o - %s -finstrument-functions | FileCheck %s
      2 
      3 // CHECK: @test1
      4 int test1(int x) {
      5 // CHECK: call void @__cyg_profile_func_enter({{.*}}, !dbg
      6 // CHECK: call void @__cyg_profile_func_exit({{.*}}, !dbg
      7 // CHECK: ret
      8   return x;
      9 }
     10 
     11 // CHECK: @test2
     12 int test2(int) __attribute__((no_instrument_function));
     13 int test2(int x) {
     14 // CHECK-NOT: __cyg_profile_func_enter
     15 // CHECK-NOT: __cyg_profile_func_exit
     16 // CHECK: ret
     17   return x;
     18 }
     19