These functions too have no prototypes. Audited the rest of Sema for

FunctionDecl::Create calls as well.

rdar://11079003

llvm-svn: 154578
This commit is contained in:
Eric Christopher
2012-04-12 02:16:49 +00:00
parent 4324f426ce
commit 0b1aef2bb0
2 changed files with 4 additions and 4 deletions

View File

@@ -1601,7 +1601,7 @@ generateByrefCopyHelper(CodeGenFunction &CGF,
SourceLocation(), II, R, 0,
SC_Static,
SC_None,
false, true);
false, false);
CGF.StartFunction(FD, R, Fn, FI, args, SourceLocation());
@@ -1672,7 +1672,7 @@ generateByrefDisposeHelper(CodeGenFunction &CGF,
SourceLocation(), II, R, 0,
SC_Static,
SC_None,
false, true);
false, false);
CGF.StartFunction(FD, R, Fn, FI, args, SourceLocation());
if (byrefInfo.needsDispose()) {

View File

@@ -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;