mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 09:21:13 +00:00
new testcase: we warn if we are merging together two functions whose argument
types to not match, but we should not warn unless their _primitive_ types mismatch git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8075 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8518e74f3e
commit
c4d360d1d4
@ -0,0 +1,12 @@
|
||||
; RUN: as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
|
||||
|
||||
declare int %foo(int *%X)
|
||||
declare int %foo(float *%X)
|
||||
|
||||
implementation
|
||||
|
||||
void %test() {
|
||||
call int %foo(int* null)
|
||||
call int %foo(float* null)
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user