[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / asm-dialect-module.ll
blob2c00a44424c2c358a06dd8a7a63d746ce715f580
1 ;; Test that we respect the assembler dialect when parsing module-level inline asm.
2 ; RUN: not llc < %s -mtriple=x86_64 2>&1 | FileCheck %s --check-prefix=ERR
3 ; RUN: llc < %s -mtriple=x86_64 -x86-asm-syntax=intel | FileCheck %s
5 ; ERR: <inline asm>:1:1: error: unknown use of instruction mnemonic without a size suffix
7 ; CHECK: .intel_syntax noprefix
8 ; CHECK: mov eax, eax
10 module asm "mov eax, eax"