aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll')
-rw-r--r--test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll b/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll
deleted file mode 100644
index dd382cfcb24d..000000000000
--- a/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc < %s
-
-; This caused the backend to assert out with:
-; SparcInstrInfo.cpp:103: failed assertion `0 && "Unexpected unsigned type"'
-;
-
-declare void @bar(i8*)
-
-define void @foo() {
- %cast225 = inttoptr i64 123456 to i8* ; <i8*> [#uses=1]
- call void @bar( i8* %cast225 )
- ret void
-}