Silence -Wunused-variable in release builds.
[llvm/stm8.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
blob234545c2936fbc71ecc67c2726ff20215367948a
1 ; RUN: llvm-as %s -o /dev/null
2 ; It looks like the assembler is not forward resolving the function declaraion
3 ; correctly.
5 define void @test() {
6         call void @foo( )
7         ret void
10 declare void @foo()