Remove the 'N' modifier from llvm-ar.
[oota-llvm.git] / include / llvm / IR / GlobalVariable.h
index 112a8468e322e7be5cc179688831685e7e955d2e..bfed50786ea0bf4395e8aa991d35909226ddb039 100644 (file)
@@ -112,7 +112,7 @@ public:
       // link time.
       !mayBeOverridden() &&
       // The initializer of a global variable with the externally_initialized
-      // marker may change at runtime before cxx initializers are evaluated.
+      // marker may change at runtime before C++ initializers are evaluated.
       !isExternallyInitialized();
   }
 
@@ -129,7 +129,7 @@ public:
       !isWeakForLinker() &&
       // It is not safe to modify initializers of global variables with the
       // external_initializer marker since the value may be changed at runtime
-      // before cxx initializers are evaluated.
+      // before C++ initializers are evaluated.
       !isExternallyInitialized();
   }