Changed in comment cxx -> C++. Thanks Richard Smith!.
authorMichael Gottesman <mgottesman@apple.com>
Tue, 5 Feb 2013 08:01:22 +0000 (08:01 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Tue, 5 Feb 2013 08:01:22 +0000 (08:01 +0000)
llvm-svn: 174355

llvm/include/llvm/IR/GlobalVariable.h

index 112a846..bfed507 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();
   }