mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
c4d360d1d4
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
13 lines
230 B
LLVM
13 lines
230 B
LLVM
; 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
|
|
}
|