Fix 32 bit build broken by D85990 by dropping align from filecheck pattern
authorJonChesterfield <jonathanchesterfield@gmail.com>
Thu, 20 Aug 2020 22:50:33 +0000 (23:50 +0100)
committerJonChesterfield <jonathanchesterfield@gmail.com>
Thu, 20 Aug 2020 22:50:33 +0000 (23:50 +0100)
clang/test/CodeGenCXX/attr-loader-uninitialized.cpp

index 6501a25..ec3e84b 100644 (file)
@@ -31,12 +31,12 @@ double arr2 [[clang::loader_uninitialized]] [4];
 
 template<typename T> struct templ{T * t;};
 
-// CHECK: @templ_int = global %struct.templ undef, align 8
+// CHECK: @templ_int = global %struct.templ undef
 templ<int> templ_int [[clang::loader_uninitialized]];
 
-// CHECK: @templ_trivial = global %struct.templ.0 undef, align 8
+// CHECK: @templ_trivial = global %struct.templ.0 undef
 templ<trivial> templ_trivial [[clang::loader_uninitialized]];
 
-// CHECK: @templ_incomplete = global %struct.templ.1 undef, align 8
+// CHECK: @templ_incomplete = global %struct.templ.1 undef
 struct incomplete;
 templ<incomplete> templ_incomplete [[clang::loader_uninitialized]];