summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/addc-fold2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/addc-fold2.ll')
-rw-r--r--test/CodeGen/Generic/addc-fold2.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/Generic/addc-fold2.ll b/test/CodeGen/Generic/addc-fold2.ll
deleted file mode 100644
index 34f5ac1b9814..000000000000
--- a/test/CodeGen/Generic/addc-fold2.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: llc < %s -march=x86 | grep add
-; RUN: llc < %s -march=x86 | not grep adc
-
-define i64 @test(i64 %A, i32 %B) {
- %tmp12 = zext i32 %B to i64 ; <i64> [#uses=1]
- %tmp3 = shl i64 %tmp12, 32 ; <i64> [#uses=1]
- %tmp5 = add i64 %tmp3, %A ; <i64> [#uses=1]
- ret i64 %tmp5
-}
-