summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-02-05 08:01:22 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-02-05 08:01:22 +0000
commitca531fd4869a17b7a6b16008b9b85741aa6b61e8 (patch)
treed571d0d58412385d5c34c969b0ead780123e2da0 /include/llvm
parent9c5b94b6be08afe22b576d007353a0002603cef1 (diff)
downloadllvm-ca531fd4869a17b7a6b16008b9b85741aa6b61e8.tar.gz
llvm-ca531fd4869a17b7a6b16008b9b85741aa6b61e8.tar.bz2
llvm-ca531fd4869a17b7a6b16008b9b85741aa6b61e8.tar.xz
Changed in comment cxx -> C++. Thanks Richard Smith!.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/IR/GlobalVariable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/IR/GlobalVariable.h b/include/llvm/IR/GlobalVariable.h
index 112a8468e3..bfed50786e 100644
--- a/include/llvm/IR/GlobalVariable.h
+++ b/include/llvm/IR/GlobalVariable.h
@@ -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();
}