diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-05-27 10:06:40 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-05-27 10:06:40 +0000 |
commit | 922efd7a67ad89ab32bac91f21d80c845b3c04f0 (patch) | |
tree | 212139b4f31cba84c6a32912b1fabe734fc201bb /llvm/lib/Target/Hexagon/RDFLiveness.cpp | |
parent | 797fb96a9ccf76febc8024a8d92c05f76271b4ee (diff) | |
download | bcm5719-llvm-922efd7a67ad89ab32bac91f21d80c845b3c04f0.tar.gz bcm5719-llvm-922efd7a67ad89ab32bac91f21d80c845b3c04f0.zip |
[hexagon] Move BlockRanges and RDF stuff into the llvm namespace.
No functional change intended.
llvm-svn: 270980
Diffstat (limited to 'llvm/lib/Target/Hexagon/RDFLiveness.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/RDFLiveness.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/RDFLiveness.cpp b/llvm/lib/Target/Hexagon/RDFLiveness.cpp index ebd5eaa778a..1c2bd2aad6d 100644 --- a/llvm/lib/Target/Hexagon/RDFLiveness.cpp +++ b/llvm/lib/Target/Hexagon/RDFLiveness.cpp @@ -36,6 +36,7 @@ using namespace llvm; using namespace rdf; +namespace llvm { namespace rdf { template<> raw_ostream &operator<< (raw_ostream &OS, const Print<Liveness::RefMap> &P) { @@ -52,7 +53,8 @@ namespace rdf { OS << " }"; return OS; } -} +} // namespace rdf +} // namespace llvm // The order in the returned sequence is the order of reaching defs in the // upward traversal: the first def is the closest to the given reference RefA, |