[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / ipra-inline-asm.ll
blobc874a09980d0e8b3d9666841d97649010ae42458
1 ; RUN: llc -enable-ipra -print-regusage -o /dev/null 2>&1 < %s | FileCheck %s
3 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-apple-macosx10.12.0"
6 ; Verify that bar does not clobber anything
7 ; CHECK-NOT: bar Clobbered Registers:{{.+}}
8 ; CHECK: bar Clobbered Registers:
9 define void @bar() #0 {
10   ret void
13 ; Verifies that inline assembly is correctly handled by giving a list of clobbered registers
14 ; CHECK: foo Clobbered Registers: $ah $al $ax $ch $cl $cx $di $dih $dil $eax $ecx $edi $hax $hcx $hdi $rax $rcx $rdi
15 define void @foo() #0 {
16   call void asm sideeffect "", "~{eax},~{ecx},~{edi}"() #0
17   ret void
20 @llvm.used = appending global [2 x i8*] [i8* bitcast (void ()* @foo to i8*), i8* bitcast (void ()* @bar to i8*)]
22 attributes #0 = { nounwind }