summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionResolve/2003-11-20-BogusResolveWarning.ll
blob: 2736a53a96b9c44cca03969ffeb7664178c57a95 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING


void %test() {
  call int(...)* %test()
  ret void
}

declare int %test(...)