From 3d82c9b6960afe50a76b8c23e9bc42c51d41e767 Mon Sep 17 00:00:00 2001 From: JonChesterfield Date: Thu, 20 Aug 2020 23:50:33 +0100 Subject: [PATCH] Fix 32 bit build broken by D85990 by dropping align from filecheck pattern --- clang/test/CodeGenCXX/attr-loader-uninitialized.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp b/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp index 6501a25..ec3e84b 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 struct templ{T * t;}; -// CHECK: @templ_int = global %struct.templ undef, align 8 +// CHECK: @templ_int = global %struct.templ undef templ templ_int [[clang::loader_uninitialized]]; -// CHECK: @templ_trivial = global %struct.templ.0 undef, align 8 +// CHECK: @templ_trivial = global %struct.templ.0 undef templ 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 templ_incomplete [[clang::loader_uninitialized]]; -- 2.7.4