Skip to content

Commit

Permalink
Fix 32 bit build broken by D85990 by dropping align from filecheck pa…
Browse files Browse the repository at this point in the history
…ttern
  • Loading branch information
JonChesterfield committed Aug 20, 2020
1 parent 038edf6 commit 3d82c9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clang/test/CodeGenCXX/attr-loader-uninitialized.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]];

0 comments on commit 3d82c9b

Please sign in to comment.