You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
294 B
12 lines
294 B
7 months ago
|
# RUN: not llvm-mc -triple=wasm32-unknown-unknown < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
# Check that missing features are named in the error message
|
||
|
|
||
|
# CHECK: error: instruction requires: simd128
|
||
|
needs_simd:
|
||
|
.functype needs_simd () -> (v128)
|
||
|
i32.const 42
|
||
|
i32x4.splat
|
||
|
drop
|
||
|
end_function
|