diff options
author | Eric Christopher <echristo@apple.com> | 2012-04-12 02:16:49 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-04-12 02:16:49 +0000 |
commit | b92bd4b3271b7892abe9fd8c74fb54a27ad702ab (patch) | |
tree | 8140f99857560dbcad46fb7a34fce6419dd48fa7 /lib/CodeGen/CGObjC.cpp | |
parent | 4f95f6444ad1f09e545daa0d5bb46a1fabc275fd (diff) |
These functions too have no prototypes. Audited the rest of Sema for
FunctionDecl::Create calls as well.
rdar://11079003
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154578 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r-- | lib/CodeGen/CGObjC.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index b3460aef2d..d0aa0f5567 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/lib/CodeGen/CGObjC.cpp @@ -2782,7 +2782,7 @@ CodeGenFunction::GenerateObjCAtomicSetterCopyHelperFunction( SC_Static, SC_None, false, - true); + false); QualType DestTy = C.getPointerType(Ty); QualType SrcTy = Ty; @@ -2868,7 +2868,7 @@ CodeGenFunction::GenerateObjCAtomicGetterCopyHelperFunction( SC_Static, SC_None, false, - true); + false); QualType DestTy = C.getPointerType(Ty); QualType SrcTy = Ty; |