Skip to content

Commit 3d82c9b

Browse files
Fix 32 bit build broken by D85990 by dropping align from filecheck pattern
1 parent 038edf6 commit 3d82c9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ double arr2 [[clang::loader_uninitialized]] [4];
3131

3232
template<typename T> struct templ{T * t;};
3333

34-
// CHECK: @templ_int = global %struct.templ undef, align 8
34+
// CHECK: @templ_int = global %struct.templ undef
3535
templ<int> templ_int [[clang::loader_uninitialized]];
3636

37-
// CHECK: @templ_trivial = global %struct.templ.0 undef, align 8
37+
// CHECK: @templ_trivial = global %struct.templ.0 undef
3838
templ<trivial> templ_trivial [[clang::loader_uninitialized]];
3939

40-
// CHECK: @templ_incomplete = global %struct.templ.1 undef, align 8
40+
// CHECK: @templ_incomplete = global %struct.templ.1 undef
4141
struct incomplete;
4242
templ<incomplete> templ_incomplete [[clang::loader_uninitialized]];

0 commit comments

Comments
 (0)