Skip to content

Commit 8bfe27f

Browse files
committed
fixup, move into anonymous namespace
1 parent 1423b88 commit 8bfe27f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/utils/TableGen/VTEmitter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class VTEmitter {
2727
void run(raw_ostream &OS);
2828
};
2929

30-
} // End anonymous namespace.
31-
3230
static void VTtoGetLLVMTyString(raw_ostream &OS, const Record *VT) {
3331
bool IsVector = VT->getValueAsBit("isVector");
3432
if (IsVector)
@@ -70,6 +68,8 @@ static void VTtoGetLLVMTyString(raw_ostream &OS, const Record *VT) {
7068
OS << ", " << VT->getValueAsInt("nElem") << ")";
7169
}
7270

71+
} // End anonymous namespace.
72+
7373
void VTEmitter::run(raw_ostream &OS) {
7474
emitSourceFileHeader("ValueTypes Source Fragment", OS, Records);
7575

0 commit comments

Comments
 (0)