forked from OSchip/llvm-project
[X86] Add missing namespace closure comments. NFCI.
Fixes some clang-tidy llvm-namespace-comment warnings.
This commit is contained in:
parent
af71298648
commit
0793b45660
|
@ -1662,9 +1662,9 @@ namespace X86 {
|
|||
sib = 504,
|
||||
sib64 = 505
|
||||
};
|
||||
}
|
||||
} // namespace X86
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
static bool translateInstruction(MCInst &target,
|
||||
InternalInstruction &source,
|
||||
|
@ -1689,7 +1689,7 @@ private:
|
|||
DisassemblerMode fMode;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
X86GenericDisassembler::X86GenericDisassembler(
|
||||
const MCSubtargetInfo &STI,
|
||||
|
|
|
@ -344,4 +344,4 @@ void DecodeVPERMV3Mask(const Constant *C, unsigned ElSize, unsigned Width,
|
|||
ShuffleMask.push_back(Index);
|
||||
}
|
||||
}
|
||||
} // llvm namespace
|
||||
} // namespace llvm
|
||||
|
|
|
@ -109,7 +109,7 @@ private:
|
|||
/// The linked list node subobject inside of RegNode.
|
||||
Value *Link = nullptr;
|
||||
};
|
||||
}
|
||||
} // namespace
|
||||
|
||||
FunctionPass *llvm::createX86WinEHStatePass() { return new WinEHStatePass(); }
|
||||
|
||||
|
|
Loading…
Reference in New Issue