projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85c6224
)
[NFC] Don't over-eagerly check block alignment
author
JF Bastien
<jfbastien@apple.com>
Tue, 8 Jan 2019 18:51:38 +0000
(18:51 +0000)
committer
JF Bastien
<jfbastien@apple.com>
Tue, 8 Jan 2019 18:51:38 +0000
(18:51 +0000)
Alignment of __block isn't relevant to this test, remove its checking.
llvm-svn: 350644
clang/test/CodeGenCXX/trivial-auto-var-init.cpp
patch
|
blob
|
history
diff --git
a/clang/test/CodeGenCXX/trivial-auto-var-init.cpp
b/clang/test/CodeGenCXX/trivial-auto-var-init.cpp
index
8b35fdb
..
b795c07
100644
(file)
--- a/
clang/test/CodeGenCXX/trivial-auto-var-init.cpp
+++ b/
clang/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);