File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11// REQUIRES: x86-registered-target
2- // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O0 -fmerge-functions -emit-llvm -o - -x c++ < %s | FileCheck %s -implicit-check-not=_ZN1A1gEiPi
3- // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O1 -fmerge-functions -emit-llvm -o - -x c++ < %s | FileCheck %s -implicit-check-not=_ZN1A1gEiPi
2+ // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O0 -fmerge-functions -emit-llvm -o - -x c++ < %s | FileCheck %s
3+ // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -O1 -fmerge-functions -emit-llvm -o - -x c++ < %s | FileCheck %s
44
55// Basic functionality test. Function merging doesn't kick in on functions that
66// are too simple.
@@ -10,4 +10,8 @@ struct A {
1010 virtual int g (int x, int *p) { return x ? *p : 1 ; }
1111} a;
1212
13- // CHECK: define {{.*}} @_ZN1A1fEiPi
13+ // CHECK: define linkonce_odr noundef i32 @_ZN1A1gEiPi(
14+ // CHECK: tail call noundef i32 @0(
15+
16+ // CHECK: define linkonce_odr noundef i32 @_ZN1A1fEiPi(
17+ // CHECK: tail call noundef i32 @0(
You can’t perform that action at this time.
0 commit comments