2004-02-15 23:14:46 +01:00
|
|
|
; The intrinsic lowering pass was lowering intrinsics like llvm.memcpy to
|
|
|
|
; explicitly specified prototypes, inserting a new function if the old one
|
|
|
|
; didn't exist. This caused there to be two external memcpy functions in
|
|
|
|
; this testcase for example, which caused the CBE to mangle one, screwing
|
|
|
|
; everything up. :( Test that this does not happen anymore.
|
|
|
|
;
|
2006-12-02 05:23:10 +01:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep _memcpy
|
2004-02-15 23:14:46 +01:00
|
|
|
|
2007-04-16 05:10:56 +02:00
|
|
|
declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint,uint)
|
2004-02-15 23:14:46 +01:00
|
|
|
declare float* %memcpy(int*, uint,int)
|
|
|
|
|
|
|
|
int %test(sbyte *%A, sbyte* %B, int* %C) {
|
|
|
|
call float* %memcpy(int* %C, uint 4, int 17)
|
2007-04-16 05:10:56 +02:00
|
|
|
call void %llvm.memcpy.i32(sbyte* %A, sbyte* %B, uint 123, uint 14)
|
2004-02-15 23:14:46 +01:00
|
|
|
ret int 7
|
|
|
|
}
|