diff options
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGObjC.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGObjC.cpp b/clang/lib/CodeGen/CGObjC.cpp index c40fe939b65..ce963885076 100644 --- a/clang/lib/CodeGen/CGObjC.cpp +++ b/clang/lib/CodeGen/CGObjC.cpp @@ -232,11 +232,9 @@ void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP, llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size); Args.push_back(std::make_pair(RValue::get(SizeVal), getContext().LongTy)); - // FIXME. Implement when Atomic is false; But when struct has - // gc'able data member! llvm::Value *isAtomic = - llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), - IsAtomic ? 1 : 0); + llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), + IsAtomic ? 1 : 0); Args.push_back(std::make_pair(RValue::get(isAtomic), getContext().BoolTy)); llvm::Value *hasStrong = |