зеркало из https://github.com/microsoft/clang-1.git
Add a PrettyStackTraceDecl in CodeGenModule::EmitGlobalDefinition.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85237 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
b3eca29e2b
Коммит
8e2efcc267
|
@ -601,6 +601,10 @@ void CodeGenModule::EmitGlobal(GlobalDecl GD) {
|
|||
void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) {
|
||||
const ValueDecl *D = cast<ValueDecl>(GD.getDecl());
|
||||
|
||||
PrettyStackTraceDecl CrashInfo((ValueDecl *)D, D->getLocation(),
|
||||
Context.getSourceManager(),
|
||||
"Generating code for declaration");
|
||||
|
||||
if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
|
||||
EmitCXXConstructor(CD, GD.getCtorType());
|
||||
else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D))
|
||||
|
|
Загрузка…
Ссылка в новой задаче