New test cases for PR1187

llvm-svn: 34052
This commit is contained in:
Reid Spencer 2007-02-08 09:10:22 +00:00
parent 6dde337628
commit d958a2b2d8
2 changed files with 33 additions and 0 deletions

View File

@ -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
}

View File

@ -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
}