b36111271145b7c8619633722298cb46212853dd
[oota-llvm.git] / test / Verifier / 2002-04-13-RetTypes.ll
1 ; RUN: not llvm-as < %s 2>&1 | grep "value doesn't match function result type 'i32'"
2
3 ; Verify the the operand type of the ret instructions in a function match the
4 ; delcared return type of the function they live in.
5 ;
6
7 define i32 @testfunc() {
8         ret i32* null
9 }