brintos

brintos / llvm-project-archived public Read only

0
0
Text · 570 B · fefd456 Raw
19 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=i686-- < %s > /dev/null 2> %t15; RUN: FileCheck %s < %t16 7; RUN: not llc -mtriple=i686-- -filetype=obj < %s > /dev/null 2> %t28; RUN: FileCheck %s < %t29 10; RUN: not llc -mtriple=x86_64-- < %s > /dev/null 2> %t311; RUN: FileCheck %s < %t312 13; RUN: not llc -mtriple=x86_64-- -filetype=obj < %s > /dev/null 2> %t414; RUN: FileCheck %s < %t415 16module asm "	.this_directive_is_very_unlikely_to_exist"17 18; CHECK: error: unknown directive19