[llvm] r174355 - Changed in comment cxx -> C++. Thanks Richard Smith!.
Michael Gottesman
mgottesman at apple.com
Tue Feb 5 00:01:23 PST 2013
Author: mgottesman
Date: Tue Feb 5 02:01:22 2013
New Revision: 174355
URL: http://llvm.org/viewvc/llvm-project?rev=174355&view=rev
Log:
Changed in comment cxx -> C++. Thanks Richard Smith!.
Modified:
llvm/trunk/include/llvm/IR/GlobalVariable.h
Modified: llvm/trunk/include/llvm/IR/GlobalVariable.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/GlobalVariable.h?rev=174355&r1=174354&r2=174355&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/GlobalVariable.h (original)
+++ llvm/trunk/include/llvm/IR/GlobalVariable.h Tue Feb 5 02:01:22 2013
@@ -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();
}
More information about the llvm-commits
mailing list