Daniel Sanders | 753e176 | 2014-02-13 14:44:26 +0000 | [diff] [blame^] | 1 | ; Test that inline assembly is parsed by the MC layer when MC support is mature |
| 2 | ; (even when the output is assembly). |
| 3 | ; FIXME: SPARC doesn't use the integrated assembler by default in all cases |
| 4 | ; so we only test that -filetype=obj tries to parse the assembly. |
| 5 | ; FIXME: SPARC seems to accept directives that don't exist |
| 6 | ; XFAIL: * |
| 7 | |
| 8 | ; SKIP: not llc -march=sparc < %s > /dev/null 2> %t1 |
| 9 | ; SKIP: FileCheck %s < %t1 |
| 10 | |
| 11 | ; RUN: not llc -march=sparc -filetype=obj < %s > /dev/null 2> %t2 |
| 12 | ; RUN: FileCheck %s < %t2 |
| 13 | |
| 14 | ; SKIP: not llc -march=sparcv9 < %s > /dev/null 2> %t3 |
| 15 | ; SKIP: FileCheck %s < %t3 |
| 16 | |
| 17 | ; RUN: not llc -march=sparcv9 -filetype=obj < %s > /dev/null 2> %t4 |
| 18 | ; RUN: FileCheck %s < %t4 |
| 19 | |
| 20 | module asm " .this_directive_is_very_unlikely_to_exist" |
| 21 | |
| 22 | ; CHECK: LLVM ERROR: Error parsing inline asm |