From: Daniel Dunbar Date: Tue, 3 Feb 2009 06:02:10 +0000 (+0000) Subject: Add two FIXMEs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5251afa21d3583f2740fd4f83659d008625a7260;p=clang Add two FIXMEs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63613 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index b3237c96ec..44105eb442 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/lib/CodeGen/CGCall.cpp @@ -1047,6 +1047,9 @@ void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI, void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI, llvm::Function *Fn, const FunctionArgList &Args) { + // FIXME: We no longer need the types from FunctionArgList; lift up + // and simplify. + // Emit allocs for param decls. Give the LLVM Argument nodes names. llvm::Function::arg_iterator AI = Fn->arg_begin(); @@ -1160,6 +1163,8 @@ void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI, RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, llvm::Value *Callee, const CallArgList &CallArgs) { + // FIXME: We no longer need the types from CallArgs; lift up and + // simplify. llvm::SmallVector Args; // Handle struct-return functions by passing a pointer to the