diff options
Diffstat (limited to 'test/Verifier/2002-04-13-RetTypes.ll')
-rw-r--r-- | test/Verifier/2002-04-13-RetTypes.ll | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/Verifier/2002-04-13-RetTypes.ll b/test/Verifier/2002-04-13-RetTypes.ll index 1ebed17..197f5c2 100644 --- a/test/Verifier/2002-04-13-RetTypes.ll +++ b/test/Verifier/2002-04-13-RetTypes.ll @@ -1,11 +1,10 @@ -; RUN: not llvm-as -f %s -o /dev/null +; RUN: not llvm-as < %s |& grep {return type does not match operand type} ; Verify the the operand type of the ret instructions in a function match the ; delcared return type of the function they live in. ; -implementation -uint "testfunc"() +define i32 @testfunc() begin - ret int* null + ret i32* null end |