aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenTBAA.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-10-21 18:50:04 +0000
committerDan Gohman <gohman@apple.com>2010-10-21 18:50:04 +0000
commit31da5456e614dc107085b1b2a5a377e9170f2971 (patch)
tree7b0e73edb99eb3055b0fe965e80c05e6f2d4ea17 /lib/CodeGen/CodeGenTBAA.cpp
parent788f489a37bf1150deb9378cec6a6eb902d0d1b2 (diff)
Rename clang's TBAA tree root from "experimental" to "simple".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTBAA.cpp')
-rw-r--r--lib/CodeGen/CodeGenTBAA.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenTBAA.cpp b/lib/CodeGen/CodeGenTBAA.cpp
index fb551b9ac6..5df10589e2 100644
--- a/lib/CodeGen/CodeGenTBAA.cpp
+++ b/lib/CodeGen/CodeGenTBAA.cpp
@@ -57,7 +57,7 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) {
// if our LLVM IR is linked with LLVM IR from a different front-end
// (or a different version of this front-end), their TBAA trees will
// remain distinct, and the optimizer will treat them conservatively.
- Root = getTBAAInfoForNamedType("Experimental TBAA", 0);
+ Root = getTBAAInfoForNamedType("Simple C/C++ TBAA", 0);
// Define the root of the tree for user-accessible memory. C and C++
// give special powers to char and certain similar types. However,