From 8370a95d0dc423c1a1d418443136b8d5ec79adf2 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Thu, 25 Oct 2018 23:35:15 +0000 Subject: [PATCH] Delete test case. Assertions can't be tested. llvm-svn: 345336 --- llvm/test/MC/WebAssembly/block-mismatch.s | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 llvm/test/MC/WebAssembly/block-mismatch.s diff --git a/llvm/test/MC/WebAssembly/block-mismatch.s b/llvm/test/MC/WebAssembly/block-mismatch.s deleted file mode 100644 index 507ab3fa0e24..000000000000 --- 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