[llvm-commits] [dragonegg] r134365 - /dragonegg/trunk/src/Backend.cpp

Duncan Sands baldrick at free.fr
Sat Jul 2 22:39:38 PDT 2011


Author: baldrick
Date: Sun Jul  3 00:39:38 2011
New Revision: 134365

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

Modified:
    dragonegg/trunk/src/Backend.cpp

Modified: dragonegg/trunk/src/Backend.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/src/Backend.cpp?rev=134365&r1=134364&r2=134365&view=diff
==============================================================================
--- dragonegg/trunk/src/Backend.cpp (original)
+++ dragonegg/trunk/src/Backend.cpp Sun Jul  3 00:39:38 2011
@@ -1672,10 +1672,10 @@
 
   InitializeBackend();
 
-  // Output all externally visible global variables, whether they are used in
-  // this compilation unit or not, as well as any internal variables explicitly
-  // marked with the 'used' attribute.  All other internal variables are output
-  // when their user is, or discarded if unused.
+  // Output all externally visible global variables and aliases as well as any
+  // internal variables explicitly marked with the 'used' attribute.  All other
+  // internal variables and aliases are output when their user is, or discarded
+  // if unused.
   for (struct varpool_node *vnode = varpool_nodes; vnode; vnode = vnode->next) {
     if (!vnode->needed)
       continue;





More information about the llvm-commits mailing list