[clang] 3d82c9b - Fix 32 bit build broken by D85990 by dropping align from filecheck pattern

via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 20 15:50:46 PDT 2020


Author: JonChesterfield
Date: 2020-08-20T23:50:33+01:00
New Revision: 3d82c9b6960afe50a76b8c23e9bc42c51d41e767

URL: https://github.com/llvm/llvm-project/commit/3d82c9b6960afe50a76b8c23e9bc42c51d41e767
DIFF: https://github.com/llvm/llvm-project/commit/3d82c9b6960afe50a76b8c23e9bc42c51d41e767.diff

LOG: Fix 32 bit build broken by D85990 by dropping align from filecheck pattern

Added: 
    

Modified: 
    clang/test/CodeGenCXX/attr-loader-uninitialized.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp b/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp
index 6501a25bf5bc..ec3e84b59023 100644
--- a/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp
+++ b/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp
@@ -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]];


        


More information about the cfe-commits mailing list