aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/jump_sign.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/jump_sign.ll')
-rw-r--r--test/CodeGen/X86/jump_sign.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/X86/jump_sign.ll b/test/CodeGen/X86/jump_sign.ll
index cf5408e..94cbe5d 100644
--- a/test/CodeGen/X86/jump_sign.ll
+++ b/test/CodeGen/X86/jump_sign.ll
@@ -83,14 +83,3 @@ entry:
%cond = select i1 %cmp, i32 %sub, i32 0
ret i32 %cond
}
-; rdar://11540023
-define i64 @n(i64 %x, i64 %y) nounwind {
-entry:
-; CHECK: n:
-; CHECK-NOT: sub
-; CHECK: cmp
- %sub = sub nsw i64 %x, %y
- %cmp = icmp slt i64 %sub, 0
- %y.x = select i1 %cmp, i64 %y, i64 %x
- ret i64 %y.x
-}