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
6; SKIP: not llc -march=sparc < %s > /dev/null 2> %t1
7; SKIP: FileCheck %s < %t1
8
9; RUN: not llc -march=sparc -filetype=obj < %s > /dev/null 2> %t2
10; RUN: FileCheck %s < %t2
11
12; SKIP: not llc -march=sparcv9 < %s > /dev/null 2> %t3
13; SKIP: FileCheck %s < %t3
14
15; RUN: not llc -march=sparcv9 -filetype=obj < %s > /dev/null 2> %t4
16; RUN: FileCheck %s < %t4
17
18module asm "	.this_directive_is_very_unlikely_to_exist"
19
20; CHECK: LLVM ERROR: Error parsing inline asm
21