From: Gabor Greif Date: Sun, 1 Mar 2009 09:43:41 +0000 (+0000) Subject: Fix a typo. Thanks baldrick! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1a31d09a16b0b8eaa08c8649bd8673ddb0ad1841;p=oota-llvm.git Fix a typo. Thanks baldrick! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65767 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index baba18a2387..3ef83e8a816 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -36,7 +36,7 @@ template<> struct ilist_traits // ilist_node, 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) so noone will ever notice + // forbidden (save the ilist_node) so no one will ever notice // the superposition. return const_cast(static_cast(&Sentinel)); }