diff options
author | Heejin Ahn <aheejin@gmail.com> | 2018-10-25 23:35:15 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2018-10-25 23:35:15 +0000 |
commit | 8370a95d0dc423c1a1d418443136b8d5ec79adf2 (patch) | |
tree | 08a934ee58e7bca26cf675f6a52e172e2eaaef71 | |
parent | cc719ba0dd5a4636587b5f40637dce9faaf2c261 (diff) | |
download | bcm5719-llvm-8370a95d0dc423c1a1d418443136b8d5ec79adf2.tar.gz bcm5719-llvm-8370a95d0dc423c1a1d418443136b8d5ec79adf2.zip |
Delete test case. Assertions can't be tested.
llvm-svn: 345336
-rw-r--r-- | llvm/test/MC/WebAssembly/block-mismatch.s | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/test/MC/WebAssembly/block-mismatch.s b/llvm/test/MC/WebAssembly/block-mismatch.s deleted file mode 100644 index 507ab3fa0e2..00000000000 --- a/llvm/test/MC/WebAssembly/block-mismatch.s +++ /dev/null @@ -1,11 +0,0 @@ -# RUN: not llvm-mc -triple=wasm32-unknown-unknown %s -o - 2>&1 | FileCheck %s - -# This tests if there are block/loop marker mismatches, the program crashes. - .text - .type test0,@function -test0: - block - end_block - # CHECK: End marker mismatch! - end_block - end_function |