diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:42:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:42:57 +0000 |
commit | 6b7c89ee096146aefebc245c7d8741b69786655a (patch) | |
tree | 899a24b59687a5be1ef36c70dfc8283b04dd4a22 /test/Verifier | |
parent | 7a1b9bdd2b837b15c9213cdaf89cacc977e4600e (diff) |
stop accepting begin/end around function bodies in the .ll parser, this isn't pascal anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Verifier')
-rw-r--r-- | test/Verifier/2002-04-13-RetTypes.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Verifier/2002-04-13-RetTypes.ll b/test/Verifier/2002-04-13-RetTypes.ll index 197f5c24fc..d6e1a543f8 100644 --- a/test/Verifier/2002-04-13-RetTypes.ll +++ b/test/Verifier/2002-04-13-RetTypes.ll @@ -4,7 +4,6 @@ ; delcared return type of the function they live in. ; -define i32 @testfunc() -begin +define i32 @testfunc() { ret i32* null -end +} |