diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-22 16:48:22 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-22 16:48:22 +0000 |
commit | 79ba2a6379f87fa137377c3f55ff993b9e5cc144 (patch) | |
tree | 26f488997352d0466e81a1925ee944f68046cbf8 /lib/CodeGen/CGExprCXX.cpp | |
parent | cb9c07418b699bd2b8384d31ff4392df7d76eb7c (diff) |
More class anonymization.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117106 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprCXX.cpp')
-rw-r--r-- | lib/CodeGen/CGExprCXX.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CGExprCXX.cpp b/lib/CodeGen/CGExprCXX.cpp index bc4059593f..478b95ae39 100644 --- a/lib/CodeGen/CGExprCXX.cpp +++ b/lib/CodeGen/CGExprCXX.cpp @@ -688,6 +688,7 @@ static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E, StoreAnyExprIntoOneUnit(CGF, E, NewPtr); } +namespace { /// A utility class for saving an rvalue. class SavedRValue { public: @@ -727,6 +728,7 @@ public: Kind getKind() const { return K; } llvm::Value *getValue() const { return Value; } }; +} // end anonymous namespace /// Given an r-value, perform the code necessary to make sure that a /// future RestoreRValue will be able to load the value without |