aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-05 23:43:20 +0000
committerChris Lattner <sabre@nondot.org>2006-12-05 23:43:20 +0000
commit9faab9bd93ccca49e074cc86ad8e3e39c01f585c (patch)
treec788a6f76d9a069cd8ab61ef08667b61fefeac0f /test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll
parentcd42c5854817cfc3e7604bc48b2c7a806f7391c3 (diff)
Instcombine shouldn't fold these casts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll')
-rw-r--r--test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll b/test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll
new file mode 100644
index 00000000000..ca552a5d875
--- /dev/null
+++ b/test/Transforms/InstCombine/2006-12-05-fp-to-int-ext.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep zext
+
+; Never merge these two conversions, even though it's possible: this is
+; significantly more expensive than the two conversions on some targets
+; and it causes libgcc to be compile __fixunsdfdi into a recursive
+; function.
+
+
+long %test(double %D) {
+ %A = fptoui double %D to uint
+ %B = zext uint %A to long
+ ret long %B
+}