]> granicus.if.org Git - clang/commit
Remove an ugly hack that was meant to eliminate the breakpoint ambiguity
authorAdrian Prantl <aprantl@apple.com>
Tue, 18 Jun 2013 00:27:36 +0000 (00:27 +0000)
committerAdrian Prantl <aprantl@apple.com>
Tue, 18 Jun 2013 00:27:36 +0000 (00:27 +0000)
commit2736f2eca78b498dd75c739a76f833ed43cdb43b
tree25101ecd4fc2a0419738ab211291fea362125124
parentf8421a3e44e9ef78372cc50b212a482e51c2c41c
Remove an ugly hack that was meant to eliminate the breakpoint ambiguity
between a block assignment and the entry of the block function. In reality
this wouldn't work anyway because blocks are predominantly created
on-the-fly inside of an ObjC method invocation.
The proper fix for the ambiguity is to use -gcolumn-info to differentiate
the breakpoints.

This is expected to break some block-related darwin-gdb tests.

rdar://problem/14039866

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184157 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/CGStmt.cpp
test/CodeGen/debug-info-block-decl.c [new file with mode: 0644]