[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / llvm / test / MC / WebAssembly / tabletype-invalid.s
blob4e50d057ad98bdf2a8153c53a0e6926f6cffd149
1 # RUN: not llvm-mc -triple=wasm32 %s 2>&1 | FileCheck %s
3 # CHECK: [[#@LINE+1]]:11: error: Expected identifier, got:
4 .tabletype
6 # CHECK: [[#@LINE+1]]:12: error: Expected identifier, got: 42
7 .tabletype 42
9 # CHECK: [[#@LINE+1]]:15: error: Expected ,, instead got:
10 .tabletype sym
12 # CHECK: [[#@LINE+1]]:16: error: Expected identifier, got:
13 .tabletype sym,
15 # CHECK: [[#@LINE+1]]:17: error: Expected identifier, got: 42
16 .tabletype sym, 42
18 # CHECK: [[#@LINE+1]]:17: error: Unknown type in .tabletype directive: i42
19 .tabletype sym, i42
21 # CHECK: [[#@LINE+1]]:21: error: Expected integer constant, instead got:
22 .tabletype sym, i32,
24 # CHECK: [[#@LINE+1]]:25: error: Expected integer constant, instead got:
25 .tabletype sym, i32, 42,
27 # CHECK: [[#@LINE+1]]:28: error: Expected EOL, instead got: ,
28 .tabletype sym, i32, 42, 42,