[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / inline-asm-n-constraint.ll
blob669e464f1f6f89f977f557c6c511d2d56d93de52
1 ; RUN: llc -mtriple=x86_64-unknown-unknown -no-integrated-as < %s 2>&1 | FileCheck %s
3 @x = global i32 0, align 4
5 define void @foo() {
6 ; CHECK-LABEL: foo:
7   call void asm sideeffect "foo $0", "n"(i32 42) nounwind
8 ; CHECK:      #APP
9 ; CHECK-NEXT: foo    $42
10 ; CHECK-NEXT: #NO_APP
11   ret void
12 ; CHECK-NEXT: retq