aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/ipra-reg-alias.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/ipra-reg-alias.ll')
-rw-r--r--test/CodeGen/X86/ipra-reg-alias.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/X86/ipra-reg-alias.ll b/test/CodeGen/X86/ipra-reg-alias.ll
deleted file mode 100644
index 36b768e4c4ff..000000000000
--- a/test/CodeGen/X86/ipra-reg-alias.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llc -enable-ipra -print-regusage -o /dev/null 2>&1 < %s | FileCheck %s
-target triple = "x86_64--"
-
-define i8 @main(i8 %X) {
- %inc = add i8 %X, 1
- %inc2 = mul i8 %inc, 5
-; Here only CL is clobbred so CH should not be clobbred, but CX, ECX and RCX
-; should be clobbered.
-; CHECK: main Clobbered Registers: AH AL AX CL CX EAX ECX EFLAGS RAX RCX
- ret i8 %inc2
-}
-