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
10 module asm "mov eax, eax"