[NFC] Double anon namespace fix

This commit is contained in:
Andrew Lenharth 2024-06-21 13:04:54 -05:00
parent d342694c7e
commit ac858d88a1
1 changed files with 2 additions and 4 deletions

View File

@ -22,8 +22,6 @@
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
#include "llvm/Support/Debug.h"
#define DEBUG_TYPE "firrtl-vectorization"
namespace circt {
namespace firrtl {
#define GEN_PASS_DEF_VECTORIZATION
@ -34,7 +32,8 @@ namespace firrtl {
using namespace circt;
using namespace firrtl;
namespace {
#define DEBUG_TYPE "firrtl-vectorization"
//===----------------------------------------------------------------------===//
// Pass Infrastructure
//===----------------------------------------------------------------------===//
@ -77,7 +76,6 @@ public:
return failure();
}
};
} // namespace
struct VectorizationPass
: public circt::firrtl::impl::VectorizationBase<VectorizationPass> {