diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-26 15:03:19 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-26 15:03:19 +0000 |
commit | f9aac38d1290c17192a74b5bc2de52b9fb1a87ca (patch) | |
tree | d890b5f1ae04ba51983eecbb6e90e443ba684ad4 /lib/CodeGen/CGStmt.cpp | |
parent | a48e676a717309afa50ae06a3d4674acec025bf9 (diff) |
Fix comment to reflect reality.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | lib/CodeGen/CGStmt.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp index bc34848ccf..ba0bf97b56 100644 --- a/lib/CodeGen/CGStmt.cpp +++ b/lib/CodeGen/CGStmt.cpp @@ -43,8 +43,7 @@ void CodeGenFunction::EmitStopPoint(const Stmt *S) { 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; |