Mercurial > hg > CbC > CbC_llvm
annotate test/MC/X86/intel-syntax-error.s @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | |
children | 1172e4bd9c6f |
rev | line source |
---|---|
77 | 1 // RUN: not llvm-mc -triple i686-unknown-unknown -x86-asm-syntax=att %s -o /dev/null 2>&1 | FileCheck %s |
2 | |
3 // This tests weird forms of Intel and AT&T syntax that gas accepts that we | |
4 // don't. The [no]prefix operand of the syntax directive indicates whether | |
5 // registers need a '%' prefix. | |
6 | |
7 .intel_syntax prefix | |
8 // CHECK: error: '.intel_syntax prefix' is not supported: registers must not have a '%' prefix in .intel_syntax | |
9 _test2: | |
10 mov DWORD PTR [%esp - 4], 257 | |
11 .att_syntax noprefix | |
12 // CHECK: error: '.att_syntax noprefix' is not supported: registers must have a '%' prefix in .att_syntax | |
13 movl $257, -4(esp) |