diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-09-11 23:48:37 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-09-11 23:48:37 +0000 |
commit | 67037ee21e95804528ecb559980ad9d35ba2eed1 (patch) | |
tree | 855d24c864167ad8fbd5c3a1dd9b576de215f0ff /clang/test/Modules | |
parent | 67a4fc71df2a46a273ee5aa8f81e31e92067e5da (diff) | |
download | bcm5719-llvm-67037ee21e95804528ecb559980ad9d35ba2eed1.tar.gz bcm5719-llvm-67037ee21e95804528ecb559980ad9d35ba2eed1.zip |
Revert "Specify target triple in alwaysinline tests."
Revert "Always_inline codegen rewrite."
Breaks gdb & lldb tests.
Breaks on Fedora 22 x86_64.
llvm-svn: 247491
Diffstat (limited to 'clang/test/Modules')
-rw-r--r-- | clang/test/Modules/cxx-irgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/cxx-irgen.cpp b/clang/test/Modules/cxx-irgen.cpp index 73d17467892..7cdb0d6eb59 100644 --- a/clang/test/Modules/cxx-irgen.cpp +++ b/clang/test/Modules/cxx-irgen.cpp @@ -26,14 +26,14 @@ namespace EmitInlineMethods { }; } -// CHECK-DAG: define internal i32 @_ZN1SIiE1gEv.alwaysinline() #[[ALWAYS_INLINE:.*]] align +// CHECK-DAG: define available_externally hidden {{.*}}{{signext i32|i32}} @_ZN1SIiE1gEv({{.*}} #[[ALWAYS_INLINE:.*]] align int a = S<int>::g(); int b = h(); // CHECK-DAG: define linkonce_odr {{.*}}{{signext i32|i32}} @_Z3minIiET_S0_S0_(i32 int c = min(1, 2); -// CHECK-DAG: define internal {{.*}}{{signext i32|i32}} @_ZN1SIiE1fEv.alwaysinline() #[[ALWAYS_INLINE]] align +// CHECK: define available_externally {{.*}}{{signext i32|i32}} @_ZN1SIiE1fEv({{.*}} #[[ALWAYS_INLINE]] align namespace ImplicitSpecialMembers { // CHECK-LABEL: define {{.*}} @_ZN22ImplicitSpecialMembers1BC2ERKS0_( |