Home | History | Annotate | Download | only in X86
      1 ; RUN: llc -x86-asm-syntax=intel < %s | FileCheck %s -check-prefix=INTEL
      2 ; RUN: llc -x86-asm-syntax=att < %s | FileCheck %s -check-prefix=ATT
      3 
      4 ; INTEL: .intel_syntax noprefix
      5 ; ATT-NOT: .intel_syntax noprefix
      6 target triple = "x86_64-unknown-unknown"
      7 define i32 @test() {
      8 entry:
      9   ret i32 0
     10 }
     11