mirror of
https://github.com/intel/llvm.git
synced 2026-01-29 12:53:33 +08:00
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:
@@ -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()) {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user