Adding XFAIL lines for dejagnu support.
[oota-llvm.git] / test / CodeGen / X86 / 2003-08-03-ReservedWordFunction.llx
1 ; This testcase ensures the code emitter does something about the fact that
2 ; we can have collisions with keywords
3 ; XFAIL: linux,sun
4 ; RUN: llvm-as < %s | llc | not grep '^byte:'
5
6 void %byte() {
7   ret void
8 }
9 int %main() {
10   call void %byte()
11   ret int 0
12 }
13