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: Mips doesn't use the integrated assembler by default so we only test 4 ; that -filetype=obj tries to parse the assembly. 5 6 ; SKIP: not llc -march=mips < %s > /dev/null 2> %t1 7 ; SKIP: FileCheck %s < %t1 8 9 ; RUN: not llc -march=mips -filetype=obj < %s > /dev/null 2> %t2 10 ; RUN: FileCheck %s < %t2 11 12 ; SKIP: not llc -march=mipsel < %s > /dev/null 2> %t3 13 ; SKIP: FileCheck %s < %t3 14 15 ; RUN: not llc -march=mipsel -filetype=obj < %s > /dev/null 2> %t4 16 ; RUN: FileCheck %s < %t4 17 18 ; SKIP: not llc -march=mips64 < %s > /dev/null 2> %t5 19 ; SKIP: FileCheck %s < %t5 20 21 ; RUN: not llc -march=mips64 -filetype=obj < %s > /dev/null 2> %t6 22 ; RUN: FileCheck %s < %t6 23 24 ; SKIP: not llc -march=mips64el < %s > /dev/null 2> %t7 25 ; SKIP: FileCheck %s < %t7 26 27 ; RUN: not llc -march=mips64el -filetype=obj < %s > /dev/null 2> %t8 28 ; RUN: FileCheck %s < %t8 29 30 module asm " .this_directive_is_very_unlikely_to_exist" 31 32 ; CHECK: LLVM ERROR: Error parsing inline asm 33