diff options
author | Samuel Antao <sfantao@us.ibm.com> | 2015-09-14 17:41:32 +0000 |
---|---|---|
committer | Samuel Antao <sfantao@us.ibm.com> | 2015-09-14 17:41:32 +0000 |
commit | c23a8b2d39f8965af32e880d2d336f4f77d8a867 (patch) | |
tree | f1fd503ee6a28329536a7d412245c7d060aeabfb /clang/test/Modules/cxx-irgen.cpp | |
parent | 8977618773da541b98c7b94ff9b8fb19e89a50a3 (diff) | |
download | bcm5719-llvm-c23a8b2d39f8965af32e880d2d336f4f77d8a867.tar.gz bcm5719-llvm-c23a8b2d39f8965af32e880d2d336f4f77d8a867.zip |
Update cxx-irgen.cpp test to allow signext in alwaysinline functions.
This was causing an error in Power8 targets.
llvm-svn: 247584
Diffstat (limited to 'clang/test/Modules/cxx-irgen.cpp')
-rw-r--r-- | clang/test/Modules/cxx-irgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/cxx-irgen.cpp b/clang/test/Modules/cxx-irgen.cpp index 73d17467892..fbdc158b2d5 100644 --- a/clang/test/Modules/cxx-irgen.cpp +++ b/clang/test/Modules/cxx-irgen.cpp @@ -26,7 +26,7 @@ namespace EmitInlineMethods { }; } -// CHECK-DAG: define internal i32 @_ZN1SIiE1gEv.alwaysinline() #[[ALWAYS_INLINE:.*]] align +// CHECK-DAG: define internal {{.*}}i32 @_ZN1SIiE1gEv.alwaysinline() #[[ALWAYS_INLINE:.*]] align int a = S<int>::g(); int b = h(); |