diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-05 18:34:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-05 18:34:07 +0000 |
commit | 2ed06b4276d001e3b2d80c0524a9c069852e3232 (patch) | |
tree | 56dcd4f6a7ad6478ab2a0feb547ce30a7c5e2e93 /llvm/lib/AsmParser/LLParser.h | |
parent | 758e7d778186a426b5169ac78af2e134e4b1539c (diff) | |
download | bcm5719-llvm-2ed06b4276d001e3b2d80c0524a9c069852e3232.tar.gz bcm5719-llvm-2ed06b4276d001e3b2d80c0524a9c069852e3232.zip |
Reject PR3281:accepted03.ll with:
llvm-as: accepted03.ll:1:35: invalid unresolved type up reference
declare void @r({ \7, opaque, \10 } %su)
^
llvm-svn: 61725
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.h')
-rw-r--r-- | llvm/lib/AsmParser/LLParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.h b/llvm/lib/AsmParser/LLParser.h index f2c3187e9ef..f013c630df8 100644 --- a/llvm/lib/AsmParser/LLParser.h +++ b/llvm/lib/AsmParser/LLParser.h @@ -232,7 +232,7 @@ namespace llvm { : Loc(L), Type(Ty), Attrs(Attr), Name(N) {} }; bool ParseArgumentList(std::vector<ArgInfo> &ArgList, - bool &isVarArg); + bool &isVarArg, bool inType); bool ParseFunctionHeader(Function *&Fn, bool isDefine); bool ParseFunctionBody(Function &Fn); bool ParseBasicBlock(PerFunctionState &PFS); |