summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/2008-02-04-Ctlz.ll
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-02-04 18:07:02 +0000
committerDuncan Sands <baldrick@free.fr>2008-02-04 18:07:02 +0000
commit6cc24947b67cf2ec66608b011c8f1da1de5b3e34 (patch)
tree5dac93592329233d2efca74d65ffe25bba376aa0 /test/CodeGen/Generic/2008-02-04-Ctlz.ll
parent06418c5610963a12c9dd19a62794769e48620fb2 (diff)
downloadllvm-6cc24947b67cf2ec66608b011c8f1da1de5b3e34.tar.gz
llvm-6cc24947b67cf2ec66608b011c8f1da1de5b3e34.tar.bz2
llvm-6cc24947b67cf2ec66608b011c8f1da1de5b3e34.tar.xz
Crashes LegalizeTypes with "Do not know how to
expand the result of this operator!" (node: ctlz). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic/2008-02-04-Ctlz.ll')
-rw-r--r--test/CodeGen/Generic/2008-02-04-Ctlz.ll22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/2008-02-04-Ctlz.ll b/test/CodeGen/Generic/2008-02-04-Ctlz.ll
new file mode 100644
index 0000000000..5a560aa953
--- /dev/null
+++ b/test/CodeGen/Generic/2008-02-04-Ctlz.ll
@@ -0,0 +1,22 @@
+; RUN: llvm-as < %s | llc
+
+@.str3 = external constant [56 x i8] ; <[56 x i8]*> [#uses=1]
+
+define i32 @main() nounwind {
+entry:
+ br label %bb30
+
+bb30: ; preds = %bb30, %entry
+ %l.024 = phi i64 [ -10000, %entry ], [ 0, %bb30 ] ; <i64> [#uses=2]
+ %tmp37 = tail call i64 @llvm.ctlz.i64( i64 %l.024 ) ; <i64> [#uses=1]
+ trunc i64 %tmp37 to i32 ; <i32>:0 [#uses=1]
+ %tmp40 = tail call i32 (i8*, ...)* @printf( i8* noalias getelementptr ([56 x i8]* @.str3, i32 0, i32 0), i64 %l.024, i32 %0, i32 0, i32 0 ) nounwind ; <i32> [#uses=0]
+ br i1 false, label %bb30, label %bb9.i
+
+bb9.i: ; preds = %bb30
+ ret i32 0
+}
+
+declare i32 @printf(i8* noalias , ...) nounwind
+
+declare i64 @llvm.ctlz.i64(i64) nounwind readnone