aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fold-imm.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/fold-imm.ll')
-rw-r--r--test/CodeGen/X86/fold-imm.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/CodeGen/X86/fold-imm.ll b/test/CodeGen/X86/fold-imm.ll
deleted file mode 100644
index 16e4786979b9..000000000000
--- a/test/CodeGen/X86/fold-imm.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llc < %s -march=x86 | FileCheck %s
-
-define i32 @test(i32 %X) nounwind {
-entry:
- %0 = add i32 %X, 1
- ret i32 %0
-}
-
-; CHECK: test
-; CHECK: inc
-; CHECK: ret
-
-define i32 @test2(i32 %X) nounwind {
-entry:
- %0 = add i32 %X, 4
- ret i32 %0
-}
-
-; CHECK: test2
-; CHECK: {{add.*4.*$}}
-; CHECK: ret