Mercurial > hg > CbC > CbC_llvm
comparison test/MC/X86/x86_errors.s @ 0:95c75e76d11b LLVM3.4
LLVM 3.4
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 13:56:28 +0900 |
parents | |
children | 54457678186b |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:95c75e76d11b |
---|---|
1 // RUN: not llvm-mc -triple x86_64-unknown-unknown %s 2> %t.err | |
2 // RUN: FileCheck --check-prefix=64 < %t.err %s | |
3 | |
4 // RUN: not llvm-mc -triple i386-unknown-unknown %s 2> %t.err | |
5 // RUN: FileCheck --check-prefix=32 < %t.err %s | |
6 // rdar://8204588 | |
7 | |
8 // 64: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq') | |
9 cmp $0, 0(%eax) | |
10 | |
11 // 32: error: register %rax is only available in 64-bit mode | |
12 addl $0, 0(%rax) | |
13 | |
14 // 32: test.s:8:2: error: invalid instruction mnemonic 'movi' | |
15 | |
16 # 8 "test.s" | |
17 movi $8,%eax | |
18 | |
19 movl 0(%rax), 0(%edx) // error: invalid operand for instruction | |
20 | |
21 // 32: error: instruction requires: 64-bit mode | |
22 sysexitq | |
23 | |
24 // rdar://10710167 | |
25 // 64: error: expected scale expression | |
26 lea (%rsp, %rbp, $4), %rax | |
27 | |
28 // rdar://10423777 | |
29 // 64: error: index register is 32-bit, but base register is 64-bit | |
30 movq (%rsi,%ecx),%xmm0 | |
31 | |
32 // 32: error: invalid operand for instruction | |
33 outb al, 4 |