diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
| commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
| tree | 4def12e759965de927d963ac65840d663ef9d1ea /test/MC/AMDGPU/flat-scratch.s | |
| parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) | |
Notes
Diffstat (limited to 'test/MC/AMDGPU/flat-scratch.s')
| -rw-r--r-- | test/MC/AMDGPU/flat-scratch.s | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/test/MC/AMDGPU/flat-scratch.s b/test/MC/AMDGPU/flat-scratch.s index 0664c80378db7..e87f59dafeeae 100644 --- a/test/MC/AMDGPU/flat-scratch.s +++ b/test/MC/AMDGPU/flat-scratch.s @@ -1,33 +1,36 @@ -// RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s 2>&1 | FileCheck -check-prefix=SI -check-prefix=GCN %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s 2>&1 | FileCheck -check-prefix=NOSI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s 2>&1 | FileCheck -check-prefix=NOCI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s 2>&1 | FileCheck -check-prefix=NOVI %s // RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s | FileCheck -check-prefix=CI %s // RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s | FileCheck -check-prefix=VI %s -// Add a different RUN line for the failing checks, because when stderr and stdout are mixed the -// order things are printed is not deterministic. -// RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s 2>&1 | FileCheck -check-prefix=GCN %s -// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s 2>&1 | FileCheck -check-prefix=GCN %s - s_mov_b64 flat_scratch, -1 -// SI: error: invalid operand for instruction +// NOSI: error: not a valid operand. // CI: s_mov_b64 flat_scratch, -1 ; encoding: [0xc1,0x04,0xe8,0xbe] // VI: s_mov_b64 flat_scratch, -1 ; encoding: [0xc1,0x01,0xe6,0xbe] s_mov_b32 flat_scratch_lo, -1 -// SI: error: invalid operand for instruction +// NOSI: error: not a valid operand. // CI: s_mov_b32 flat_scratch_lo, -1 ; encoding: [0xc1,0x03,0xe8,0xbe] // VI: s_mov_b32 flat_scratch_lo, -1 ; encoding: [0xc1,0x00,0xe6,0xbe] s_mov_b32 flat_scratch_hi, -1 -// SI: error: invalid operand for instruction +// NOSI: error: not a valid operand. // CI: s_mov_b32 flat_scratch_hi, -1 ; encoding: [0xc1,0x03,0xe9,0xbe] // VI: s_mov_b32 flat_scratch_hi, -1 ; encoding: [0xc1,0x00,0xe7,0xbe] s_mov_b64 flat_scratch_lo, -1 -// GCN: error: invalid operand for instruction +// NOSI: error: not a valid operand. +// NOCI: error: invalid operand for instruction +// NOVI: error: invalid operand for instruction s_mov_b64 flat_scratch_hi, -1 -// GCN: error: invalid operand for instruction +// NOSI: error: not a valid operand. +// NOCI: error: invalid operand for instruction +// NOVI: error: invalid operand for instruction s_mov_b32 flat_scratch, -1 -// GCN: error: invalid operand for instruction +// NOSI: error: not a valid operand. +// NOCI: error: invalid operand for instruction +// NOVI: error: invalid operand for instruction |
