diff options
-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 |