projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c930cbc
)
Relax assertion. In optimized code, it is possible that first instruction is coming...
author
Devang Patel
<dpatel@apple.com>
Thu, 8 Jul 2010 22:39:20 +0000
(22:39 +0000)
committer
Devang Patel
<dpatel@apple.com>
Thu, 8 Jul 2010 22:39:20 +0000
(22:39 +0000)
This fixes PR7596 .
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107923
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/DwarfDebug.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 959644641ab1a85dc9a707f56be1c0be5f6310de..2e9ba40f6ed0aa38d858c9bed522a8f969d0d5cb 100644
(file)
--- a/
lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/
lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@
-1504,7
+1504,7
@@
DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) {
const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first);
const MCSymbol *EndLabel = getLabelAfterInsn(RI->second);
- if (StartLabel ==
FunctionBeginSym
|| EndLabel == 0) {
+ if (StartLabel ==
0
|| EndLabel == 0) {
assert (0 && "Unexpected Start and End labels for a inlined scope!");
return 0;
}