diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-03-23 12:30:58 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-03-23 12:30:58 +0000 |
commit | 51f6096cf80a3a02d20d5f109188088e489d73e4 (patch) | |
tree | ef1df475f137b7d1f85e6cead828c3e7e9bfe6b6 /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 5b4362276b1f38d6a7dd1c67cc5c8cc45e25960b (diff) | |
download | bcm5719-llvm-51f6096cf80a3a02d20d5f109188088e489d73e4.tar.gz bcm5719-llvm-51f6096cf80a3a02d20d5f109188088e489d73e4.zip |
Move private classes into anonymous namespaces
NFC.
llvm-svn: 232944
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index e1aee4d898a..2afd7faaea9 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -32,6 +32,7 @@ #include <algorithm> using namespace llvm; +namespace { //===----------------------------------------------------------------------===// // Implementation of various methods necessary for calculation of live ranges. // The implementation of the methods abstracts from the concrete type of the @@ -293,6 +294,7 @@ private: return I; } }; +} // namespace //===----------------------------------------------------------------------===// // LiveRange methods |