diff options
author | David Stenberg <david.stenberg@ericsson.com> | 2019-06-13 14:02:55 +0000 |
---|---|---|
committer | David Stenberg <david.stenberg@ericsson.com> | 2019-06-13 14:02:55 +0000 |
commit | 1278a19282310b13761b4d17d3d1fc4b5baf1e50 (patch) | |
tree | d572f99a01bc131753f3bbc7d56a7d0b96e95c95 /llvm/lib/CodeGen | |
parent | e6820dac99a8a42ef03e4e9668920cee9732256f (diff) | |
download | bcm5719-llvm-1278a19282310b13761b4d17d3d1fc4b5baf1e50.tar.gz bcm5719-llvm-1278a19282310b13761b4d17d3d1fc4b5baf1e50.zip |
Remove ';' after namespace's closing bracket [NFC]
llvm-svn: 363267
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugValues.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugValues.cpp b/llvm/lib/CodeGen/LiveDebugValues.cpp index 47a952ca7de..5eb244080f1 100644 --- a/llvm/lib/CodeGen/LiveDebugValues.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues.cpp @@ -424,7 +424,7 @@ template <> struct DenseMapInfo<LiveDebugValues::DebugVariable> { static bool isEqual(const DV &A, const DV &B) { return A == B; } }; -}; // namespace llvm +} // namespace llvm //===----------------------------------------------------------------------===// // Implementation |