New test cases for PR1187
authorReid Spencer <rspencer@reidspencer.com>
Thu, 8 Feb 2007 09:10:22 +0000 (09:10 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 8 Feb 2007 09:10:22 +0000 (09:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34052 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2007-02-07-BasicBlockRename.ll [new file with mode: 0644]
test/Assembler/2007-02-07-UpgradeGVarConflict.ll [new file with mode: 0644]

diff --git a/test/Assembler/2007-02-07-BasicBlockRename.ll b/test/Assembler/2007-02-07-BasicBlockRename.ll
new file mode 100644 (file)
index 0000000..084dc69
--- /dev/null
@@ -0,0 +1,14 @@
+; PR1187
+; RUN: llvm-upgrade < %s | llvm-as > /dev/null
+
+implementation
+
+int @main(int %argc, sbyte** %argv) {
+entry:
+       %exit = alloca int, align 4             ; <i32*> [#uses=11]
+        store int 0, int* %exit
+       br label %exit
+
+exit:
+       ret int 0
+}
diff --git a/test/Assembler/2007-02-07-UpgradeGVarConflict.ll b/test/Assembler/2007-02-07-UpgradeGVarConflict.ll
new file mode 100644 (file)
index 0000000..06e9525
--- /dev/null
@@ -0,0 +1,19 @@
+; For PR1187
+; RUN: llvm-upgrade < %s > /dev/null
+
+%struct.isc_hash_t = type { uint, sbyte*, int, uint, uint, 
+                            [4 x ubyte], ulong, ushort* }
+%hash = internal global %struct.isc_hash_t* null
+
+implementation
+
+void %somefunc() {
+  %key_addr = alloca sbyte*
+  %tmp21 = load sbyte** %key_addr
+  %tmp22 = call fastcc uint %hash(sbyte* %tmp21, uint 0)
+  ret void
+}
+
+internal fastcc uint %hash(sbyte* %key, uint %case_sensitive) {
+  ret uint 0
+}