diff options
Diffstat (limited to 'llvm/unittests/Support/AlignOfTest.cpp')
-rw-r--r-- | llvm/unittests/Support/AlignOfTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/unittests/Support/AlignOfTest.cpp b/llvm/unittests/Support/AlignOfTest.cpp index 780af95e2ab..d8cabde6c72 100644 --- a/llvm/unittests/Support/AlignOfTest.cpp +++ b/llvm/unittests/Support/AlignOfTest.cpp @@ -38,10 +38,10 @@ namespace { #endif // Define some fixed alignment types to use in these tests. -struct LLVM_ALIGNAS(1) A1 {}; -struct LLVM_ALIGNAS(2) A2 {}; -struct LLVM_ALIGNAS(4) A4 {}; -struct LLVM_ALIGNAS(8) A8 {}; +struct alignas(1) A1 {}; +struct alignas(2) A2 {}; +struct alignas(4) A4 {}; +struct alignas(8) A8 {}; struct S1 {}; struct S2 { char a; }; |