123d952b6SMichael Kuperstein; RUN: llc -x86-asm-syntax=intel < %s | FileCheck %s -check-prefix=INTEL 223d952b6SMichael Kuperstein; RUN: llc -x86-asm-syntax=att < %s | FileCheck %s -check-prefix=ATT 323d952b6SMichael Kuperstein 423d952b6SMichael Kuperstein; INTEL: .intel_syntax noprefix 523d952b6SMichael Kuperstein; ATT-NOT: .intel_syntax noprefix 6*75216a8dSMichael Kupersteintarget triple = "x86_64-unknown-unknown" 723d952b6SMichael Kupersteindefine i32 @test() { 823d952b6SMichael Kupersteinentry: 923d952b6SMichael Kuperstein ret i32 0 1023d952b6SMichael Kuperstein} 11