r247584 - Update cxx-irgen.cpp test to allow signext in alwaysinline functions.

Samuel Antao via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 14 10:41:32 PDT 2015


Author: sfantao
Date: Mon Sep 14 12:41:32 2015
New Revision: 247584

URL: http://llvm.org/viewvc/llvm-project?rev=247584&view=rev
Log:
Update cxx-irgen.cpp test to allow signext in alwaysinline functions.

This was causing an error in Power8 targets.

Modified:
    cfe/trunk/test/Modules/cxx-irgen.cpp

Modified: cfe/trunk/test/Modules/cxx-irgen.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/cxx-irgen.cpp?rev=247584&r1=247583&r2=247584&view=diff
==============================================================================
--- cfe/trunk/test/Modules/cxx-irgen.cpp (original)
+++ cfe/trunk/test/Modules/cxx-irgen.cpp Mon Sep 14 12:41:32 2015
@@ -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();




More information about the cfe-commits mailing list