From: Fariborz Jahanian Date: Tue, 13 Apr 2010 18:43:37 +0000 (+0000) Subject: Removes a FIXME. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08adf327cdcbf838990915bcdaebfdaf553144b7;p=clang Removes a FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101161 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index c40fe939b6..ce96388507 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/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 =