llvm-6502/test/Transforms/FunctionResolve/2003-06-18-TypePromotion.ll
2006-12-02 04:23:10 +00:00

13 lines
210 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve | dis | not grep declare
declare void %test(int)
int %callee(int %X) {
call void %test(int %X)
ret int 2
}
internal void %test(sbyte) {
ret void
}