aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PIC16
diff options
context:
space:
mode:
authorSanjiv Gupta <sanjiv.gupta@microchip.com>2009-08-05 15:52:14 +0000
committerSanjiv Gupta <sanjiv.gupta@microchip.com>2009-08-05 15:52:14 +0000
commit96a0a02119c0e5a4bb49aa5563ec2ea238c5acb6 (patch)
tree887877bd7727da3c18716a7638ec757ea9d02689 /test/CodeGen/PIC16
parentc9af366fc39d657b7d416d16988265d86a641184 (diff)
downloadexternal_llvm-96a0a02119c0e5a4bb49aa5563ec2ea238c5acb6.zip
external_llvm-96a0a02119c0e5a4bb49aa5563ec2ea238c5acb6.tar.gz
external_llvm-96a0a02119c0e5a4bb49aa5563ec2ea238c5acb6.tar.bz2
Quite a few tests crashed in llc after 78142. This is just one of them. I hope to add a few more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PIC16')
-rw-r--r--test/CodeGen/PIC16/sext.ll10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/PIC16/sext.ll b/test/CodeGen/PIC16/sext.ll
new file mode 100644
index 0000000..b26b62b
--- /dev/null
+++ b/test/CodeGen/PIC16/sext.ll
@@ -0,0 +1,10 @@
+; RUN: llvm-as < %s | llc -march=pic16
+
+@main.auto.c = internal global i8 0 ; <i8*> [#uses=1]
+
+define i16 @main() nounwind {
+entry:
+ %tmp = load i8* @main.auto.c ; <i8> [#uses=1]
+ %conv = sext i8 %tmp to i16 ; <i16> [#uses=1]
+ ret i16 %conv
+}