From: Chris Lattner Date: Tue, 1 Feb 2005 01:47:42 +0000 (+0000) Subject: Fix test/Regression/Assembler/2005-01-31-CallingAggregateFunction.ll X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=595f06c6da14842c6be586eda6cbba202a6bc18f;p=oota-llvm.git Fix test/Regression/Assembler/2005-01-31-CallingAggregateFunction.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19966 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/llvmAsmParser.y b/lib/AsmParser/llvmAsmParser.y index 13df7fe97cc..0f2af204477 100644 --- a/lib/AsmParser/llvmAsmParser.y +++ b/lib/AsmParser/llvmAsmParser.y @@ -2057,6 +2057,9 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef { bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy; if (isVarArg) ParamTypes.pop_back(); + if (!(*$2)->isFirstClassType() && *$2 != Type::VoidTy) + ThrowException("LLVM functions cannot return aggregate types!"); + Ty = FunctionType::get($2->get(), ParamTypes, isVarArg); PFTy = PointerType::get(Ty); }