summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGObjC.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-02 23:23:47 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-02 23:23:47 +0000
commitbf8c24ad89f39c91a36f711ab7c0eced68864987 (patch)
treef1ae0433cf6445ba08ce647877bb99378d3162c7 /clang/lib/CodeGen/CGObjC.cpp
parentf126e590429416744279d7efc9a8956af455ba43 (diff)
downloadbcm5719-llvm-bf8c24ad89f39c91a36f711ab7c0eced68864987.tar.gz
bcm5719-llvm-bf8c24ad89f39c91a36f711ab7c0eced68864987.zip
Thread CGFunctionInfo construction through CodeGenTypes.
- Inefficient & leaks memory currently, will be cleaned up subsequently. llvm-svn: 63567
Diffstat (limited to 'clang/lib/CodeGen/CGObjC.cpp')
-rw-r--r--clang/lib/CodeGen/CGObjC.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGObjC.cpp b/clang/lib/CodeGen/CGObjC.cpp
index cf37886e6d3..9dc45efc687 100644
--- a/clang/lib/CodeGen/CGObjC.cpp
+++ b/clang/lib/CodeGen/CGObjC.cpp
@@ -183,7 +183,7 @@ void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP,
Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
- RValue RV = EmitCall(CGFunctionInfo(PD->getType(), Args),
+ RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args),
GetPropertyFn, Args);
// We need to fix the type here. Ivars with copy & retain are
// always objects so we don't need to worry about complex or
@@ -268,7 +268,8 @@ void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP,
getContext().BoolTy));
Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False),
getContext().BoolTy));
- EmitCall(CGFunctionInfo(PD->getType(), Args), SetPropertyFn, Args);
+ EmitCall(Types.getFunctionInfo(PD->getType(), Args),
+ SetPropertyFn, Args);
} else {
SourceLocation Loc = PD->getLocation();
ValueDecl *Self = OMD->getSelfDecl();
OpenPOWER on IntegriCloud