blob: 1afa47bc51957aa1f64b3f6c0de41d04f75162d4 [file] [log] [blame]
Chris Lattnerb83530f2004-02-15 22:14:46 +00001; The intrinsic lowering pass was lowering intrinsics like llvm.memcpy to
2; explicitly specified prototypes, inserting a new function if the old one
3; didn't exist. This caused there to be two external memcpy functions in
4; this testcase for example, which caused the CBE to mangle one, screwing
5; everything up. :( Test that this does not happen anymore.
6;
Reid Spencer69ccadd2006-12-02 04:23:10 +00007; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep _memcpy
Chris Lattnerb83530f2004-02-15 22:14:46 +00008
Reid Spencerf9dd3322007-04-16 03:10:56 +00009declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint,uint)
Chris Lattnerb83530f2004-02-15 22:14:46 +000010declare float* %memcpy(int*, uint,int)
11
12int %test(sbyte *%A, sbyte* %B, int* %C) {
13 call float* %memcpy(int* %C, uint 4, int 17)
Reid Spencerf9dd3322007-04-16 03:10:56 +000014 call void %llvm.memcpy.i32(sbyte* %A, sbyte* %B, uint 123, uint 14)
Chris Lattnerb83530f2004-02-15 22:14:46 +000015 ret int 7
16}