the big refactoring bits of PR3782.
This introduces FunctionType::ExtInfo to hold the calling convention and the noreturn attribute. The next patch will extend it to include the regparm attribute and fix the bug. llvm-svn: 99920
This commit is contained in:
@@ -199,8 +199,8 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy,
|
||||
|
||||
QualType FnType = getContext().getFunctionType(RetTy, 0, 0, false, 0,
|
||||
false, false, 0, 0,
|
||||
/*FIXME?*/false,
|
||||
/*FIXME?*/CC_Default);
|
||||
/*FIXME?*/
|
||||
FunctionType::ExtInfo());
|
||||
|
||||
// Emit subprogram debug descriptor.
|
||||
if (CGDebugInfo *DI = getDebugInfo()) {
|
||||
@@ -211,7 +211,7 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy,
|
||||
// FIXME: Leaked.
|
||||
// CC info is ignored, hopefully?
|
||||
CurFnInfo = &CGM.getTypes().getFunctionInfo(FnRetTy, Args,
|
||||
CC_Default, false);
|
||||
FunctionType::ExtInfo());
|
||||
|
||||
if (RetTy->isVoidType()) {
|
||||
// Void type; nothing to return.
|
||||
|
||||
Reference in New Issue
Block a user