llvm-6502/test/Transforms/FunctionResolve/2003-06-18-TypePromotion.ll
Chris Lattner ecfecfe114 old testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8967 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-08 18:28:10 +00:00

13 lines
195 B
LLVM

; RUN: llvm-as < %s | 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
}