diff options
author | JF Bastien <jfbastien@apple.com> | 2019-01-08 18:51:38 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-01-08 18:51:38 +0000 |
commit | 509536157bf1e1feb1098ace99260d61035dee64 (patch) | |
tree | 799f98d66d96de0d0eb3ac2fc61156b5e7c91e80 /test | |
parent | 92f4b5cbeee88f31a8df876f73b823db284f68de (diff) | |
download | clang-509536157bf1e1feb1098ace99260d61035dee64.tar.gz |
[NFC] Don't over-eagerly check block alignment
Alignment of __block isn't relevant to this test, remove its checking.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@350644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGenCXX/trivial-auto-var-init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/trivial-auto-var-init.cpp b/test/CodeGenCXX/trivial-auto-var-init.cpp index 8b35fdb441..b795c0755b 100644 --- a/test/CodeGenCXX/trivial-auto-var-init.cpp +++ b/test/CodeGenCXX/trivial-auto-var-init.cpp @@ -22,9 +22,9 @@ void test_selfinit() { // UNINIT-LABEL: test_block( // ZERO-LABEL: test_block( -// ZERO: store i32 0, i32* %block, align 4 +// ZERO: store i32 0, i32* %block // PATTERN-LABEL: test_block( -// PATTERN: store i32 -1431655766, i32* %block, align 4 +// PATTERN: store i32 -1431655766, i32* %block void test_block() { __block int block; used(block); |