29 lines · plain
1; Test that inline assembly is parsed by the MC layer when MC support is mature2; (even when the output is assembly).3 4; RUN: not llc -mtriple=ppc32-- < %s > /dev/null 2> %t15; RUN: FileCheck %s < %t16 7; RUN: not llc -mtriple=ppc32-- -filetype=obj < %s > /dev/null 2> %t28; RUN: FileCheck %s < %t29 10; Test that we don't try to produce COFF for ppc.11; RUN: not llc -mtriple=powerpc-mingw32 -filetype=obj < %s > /dev/null 2> %t212; RUN: FileCheck %s < %t213 14; RUN: not llc -mtriple=ppc64-- < %s > /dev/null 2> %t315; RUN: FileCheck %s < %t316 17; RUN: not llc -mtriple=ppc64-- -filetype=obj < %s > /dev/null 2> %t418; RUN: FileCheck %s < %t419 20; RUN: not llc -mtriple=ppc64--le < %s > /dev/null 2> %t521; RUN: FileCheck %s < %t522 23; RUN: not llc -mtriple=ppc64--le -filetype=obj < %s > /dev/null 2> %t624; RUN: FileCheck %s < %t625 26module asm " .this_directive_is_very_unlikely_to_exist"27 28; CHECK: error: unknown directive29