[cfe-commits] r140530 - /cfe/trunk/lib/CodeGen/CGStmt.cpp
Eric Christopher
echristo at apple.com
Mon Sep 26 08:03:19 PDT 2011
Author: echristo
Date: Mon Sep 26 10:03:19 2011
New Revision: 140530
URL: http://llvm.org/viewvc/llvm-project?rev=140530&view=rev
Log:
Fix comment to reflect reality.
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=140530&r1=140529&r2=140530&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGStmt.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGStmt.cpp Mon Sep 26 10:03:19 2011
@@ -43,8 +43,7 @@
void CodeGenFunction::EmitStmt(const Stmt *S) {
assert(S && "Null statement?");
- // Check if we can handle this without bothering to generate an
- // insert point or debug info.
+ // These statements have their own debug info handling.
if (EmitSimpleStmt(S))
return;
More information about the cfe-commits
mailing list