diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2018-10-01 20:29:34 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2018-10-01 20:29:34 +0000 |
commit | 31974847014eaad83ed15d3f385e3f761f7cfe4a (patch) | |
tree | 314b7fb6684ec4fe863bfc1c224f6977dd7f3d45 /clang/test/CodeGen/blocks-seq.c | |
parent | 97e0f52642565e843decca34894834787515e251 (diff) | |
download | bcm5719-llvm-31974847014eaad83ed15d3f385e3f761f7cfe4a.tar.gz bcm5719-llvm-31974847014eaad83ed15d3f385e3f761f7cfe4a.zip |
Revert r343518.
Bots are still failing.
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fast/builds/24420
http://lab.llvm.org:8011/builders/llvm-clang-x86_64-expensive-checks-win/builds/12958
llvm-svn: 343531
Diffstat (limited to 'clang/test/CodeGen/blocks-seq.c')
-rw-r--r-- | clang/test/CodeGen/blocks-seq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/CodeGen/blocks-seq.c b/clang/test/CodeGen/blocks-seq.c index 9b47fbf783d..b3e672976ca 100644 --- a/clang/test/CodeGen/blocks-seq.c +++ b/clang/test/CodeGen/blocks-seq.c @@ -11,7 +11,6 @@ int rhs(); void foo() { __block int i; - ^{ (void)i; }; i = rhs(); i += rhs(); } |