зеркало из https://github.com/microsoft/clang-1.git
Emit DW_TAG_lexical_scope to surround foreach.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123802 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
0b53cf8343
Коммит
bcbd03ac0a
|
@ -11,6 +11,7 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "CGDebugInfo.h"
|
||||||
#include "CGObjCRuntime.h"
|
#include "CGObjCRuntime.h"
|
||||||
#include "CodeGenFunction.h"
|
#include "CodeGenFunction.h"
|
||||||
#include "CodeGenModule.h"
|
#include "CodeGenModule.h"
|
||||||
|
@ -612,6 +613,12 @@ void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CGDebugInfo *DI = getDebugInfo();
|
||||||
|
if (DI) {
|
||||||
|
DI->setLocation(S.getSourceRange().getBegin());
|
||||||
|
DI->EmitRegionStart(Builder);
|
||||||
|
}
|
||||||
|
|
||||||
JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end");
|
JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end");
|
||||||
JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next");
|
JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next");
|
||||||
|
|
||||||
|
@ -842,6 +849,11 @@ void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
|
||||||
EmitStoreThroughLValue(RValue::get(null), elementLValue, elementType);
|
EmitStoreThroughLValue(RValue::get(null), elementLValue, elementType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DI) {
|
||||||
|
DI->setLocation(S.getSourceRange().getEnd());
|
||||||
|
DI->EmitRegionEnd(Builder);
|
||||||
|
}
|
||||||
|
|
||||||
EmitBlock(LoopEnd.getBlock());
|
EmitBlock(LoopEnd.getBlock());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -emit-llvm -g %s -o %t
|
||||||
|
// RUN: grep DW_TAG_lexical_block %t | count 5
|
||||||
|
// rdar://8757124
|
||||||
|
|
||||||
|
@class NSArray;
|
||||||
|
|
||||||
|
void f(NSArray *a) {
|
||||||
|
id keys;
|
||||||
|
for (id thisKey in keys) {
|
||||||
|
}
|
||||||
|
for (id thisKey in keys) {
|
||||||
|
}
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче