diff options
author | Dan Gohman <gohman@apple.com> | 2010-10-21 18:50:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-10-21 18:50:04 +0000 |
commit | 2bb62c3d2bab531df15852b609f3514aebebc248 (patch) | |
tree | 7a809c30a329fbe366a28af60d18e7c51830bcf3 /clang/lib/CodeGen/CodeGenTBAA.cpp | |
parent | 5ef9ad9907a7f8bf2a6d585f9a1872e9e9bed23e (diff) | |
download | bcm5719-llvm-2bb62c3d2bab531df15852b609f3514aebebc248.tar.gz bcm5719-llvm-2bb62c3d2bab531df15852b609f3514aebebc248.zip |
Rename clang's TBAA tree root from "experimental" to "simple".
llvm-svn: 117046
Diffstat (limited to 'clang/lib/CodeGen/CodeGenTBAA.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenTBAA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenTBAA.cpp b/clang/lib/CodeGen/CodeGenTBAA.cpp index fb551b9ac6a..5df10589e20 100644 --- a/clang/lib/CodeGen/CodeGenTBAA.cpp +++ b/clang/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, |