[cfe-commits] r154384 - /cfe/trunk/lib/CodeGen/CGStmt.cpp
Eric Christopher
echristo at apple.com
Mon Apr 9 22:04:08 PDT 2012
Author: echristo
Date: Tue Apr 10 00:04:07 2012
New Revision: 154384
URL: http://llvm.org/viewvc/llvm-project?rev=154384&view=rev
Log:
EmitStopPoint already checks if we have debug info.
Modified:
cfe/trunk/lib/CodeGen/CGStmt.cpp
Modified: cfe/trunk/lib/CodeGen/CGStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGStmt.cpp?rev=154384&r1=154383&r2=154384&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGStmt.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGStmt.cpp Tue Apr 10 00:04:07 2012
@@ -778,7 +778,7 @@
void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
// As long as debug info is modeled with instructions, we have to ensure we
// have a place to insert here and write the stop point here.
- if (getDebugInfo() && HaveInsertPoint())
+ if (HaveInsertPoint())
EmitStopPoint(&S);
for (DeclStmt::const_decl_iterator I = S.decl_begin(), E = S.decl_end();
More information about the cfe-commits
mailing list