aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-06 05:15:27 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-06 05:15:27 +0000
commit4da3df039e425c6a53bb6a8488fcde5c7c0c9a12 (patch)
tree0c189395f2fa40786620462d0b4df1c18fedf38f /test
parentf72538ee2efabd6e9934ee55dc4c009c29281c56 (diff)
downloadexternal_llvm-4da3df039e425c6a53bb6a8488fcde5c7c0c9a12.zip
external_llvm-4da3df039e425c6a53bb6a8488fcde5c7c0c9a12.tar.gz
external_llvm-4da3df039e425c6a53bb6a8488fcde5c7c0c9a12.tar.bz2
Test case for PR1082, an llvm-upgrade bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32951 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Assembler/2007-01-05-Local-Name-Conflict.ll23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/Assembler/2007-01-05-Local-Name-Conflict.ll b/test/Assembler/2007-01-05-Local-Name-Conflict.ll
new file mode 100644
index 0000000..b35aed5
--- /dev/null
+++ b/test/Assembler/2007-01-05-Local-Name-Conflict.ll
@@ -0,0 +1,23 @@
+; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
+
+implementation ; Functions:
+
+void %interpret() {
+entry:
+ %x = bitcast sbyte 1 to sbyte
+ %x = bitcast ubyte 1 to ubyte
+ %x = bitcast short 1 to short
+ %x = bitcast ushort 1 to ushort
+ %x = bitcast int 1 to int
+ %x = bitcast uint 1 to uint
+ %x = bitcast ulong 1 to ulong
+ %x = inttoptr ulong %x to sbyte*
+ %tmp = inttoptr ulong %x to float*
+ %tmp7360 = bitcast ubyte %x to sbyte
+ %tmp7361 = sub ubyte 0, %tmp7360
+ br label %next
+
+next: ; preds = %cond_false165, %cond_true163
+ %index.0 = phi uint [ undef, %entry ], [ %index.0, %next ]
+ br label %next
+}