diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 06:02:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 06:02:10 +0000 |
commit | 5a0acdc98206745a413bca035e086203dcda64e2 (patch) | |
tree | 2061fa46510db9bdaa1e4f26241cb9956e72b65e /clang/lib/CodeGen/CGCall.cpp | |
parent | b52d077d8bee71f886678c01593ca0d1dca312e4 (diff) | |
download | bcm5719-llvm-5a0acdc98206745a413bca035e086203dcda64e2.tar.gz bcm5719-llvm-5a0acdc98206745a413bca035e086203dcda64e2.zip |
Add two FIXMEs.
llvm-svn: 63613
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index b3237c96ecc..44105eb4425 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/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<llvm::Value*, 16> Args; // Handle struct-return functions by passing a pointer to the |