[llvm-commits] [llvm] r65767 - /llvm/trunk/include/llvm/BasicBlock.h

Gabor Greif ggreif at gmail.com
Sun Mar 1 01:43:41 PST 2009


Author: ggreif
Date: Sun Mar  1 03:43:41 2009
New Revision: 65767

URL: http://llvm.org/viewvc/llvm-project?rev=65767&view=rev
Log:
Fix a typo. Thanks baldrick!

Modified:
    llvm/trunk/include/llvm/BasicBlock.h

Modified: llvm/trunk/include/llvm/BasicBlock.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/BasicBlock.h?rev=65767&r1=65766&r2=65767&view=diff

==============================================================================
--- llvm/trunk/include/llvm/BasicBlock.h (original)
+++ llvm/trunk/include/llvm/BasicBlock.h Sun Mar  1 03:43:41 2009
@@ -36,7 +36,7 @@
     // ilist_node<NodeTy>, there is a legal viable downcast from it
     // to NodeTy. We use this trick to superpose i(p)list with a "ghostly"
     // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
-    // forbidden (save the ilist_node<NodeTy>) so noone will ever notice
+    // forbidden (save the ilist_node<NodeTy>) so no one will ever notice
     // the superposition.
     return const_cast<Instruction*>(static_cast<const Instruction*>(&Sentinel));
   }





More information about the llvm-commits mailing list