[cfe-commits] r140531 - /cfe/trunk/lib/CodeGen/CGDebugInfo.cpp

Eric Christopher echristo at apple.com
Mon Sep 26 08:03:22 PDT 2011


Author: echristo
Date: Mon Sep 26 10:03:22 2011
New Revision: 140531

URL: http://llvm.org/viewvc/llvm-project?rev=140531&view=rev
Log:
Update comments.

Modified:
    cfe/trunk/lib/CodeGen/CGDebugInfo.cpp

Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=140531&r1=140530&r2=140531&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Mon Sep 26 10:03:22 2011
@@ -1824,7 +1824,7 @@
   return;
 }
 /// EmitRegionStart- Constructs the debug code for entering a declarative
-/// region - "llvm.dbg.region.start.".
+/// region - beginning of a DW_TAG_lexical_block.
 void CGDebugInfo::EmitRegionStart(CGBuilderTy &Builder) {
   llvm::DIDescriptor D =
     DBuilder.createLexicalBlock(RegionStack.empty() ? 
@@ -1838,11 +1838,11 @@
 }
 
 /// EmitRegionEnd - Constructs the debug code for exiting a declarative
-/// region - "llvm.dbg.region.end."
+/// region - end of a DW_TAG_lexical_block.
 void CGDebugInfo::EmitRegionEnd(CGBuilderTy &Builder) {
   assert(!RegionStack.empty() && "Region stack mismatch, stack empty!");
 
-  // Provide an region stop point.
+  // Provide a region stop point.
   EmitStopPoint(Builder);
 
   RegionStack.pop_back();





More information about the cfe-commits mailing list