[llvm] r305301 - bpf: clang-format on BPFAsmPrinter.cpp
Yonghong Song via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 13 09:17:20 PDT 2017
Author: yhs
Date: Tue Jun 13 11:17:20 2017
New Revision: 305301
URL: http://llvm.org/viewvc/llvm-project?rev=305301&view=rev
Log:
bpf: clang-format on BPFAsmPrinter.cpp
Signed-off-by: Yonghong Song <yhs at fb.com>
Modified:
llvm/trunk/lib/Target/BPF/BPFAsmPrinter.cpp
Modified: llvm/trunk/lib/Target/BPF/BPFAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/BPF/BPFAsmPrinter.cpp?rev=305301&r1=305300&r2=305301&view=diff
==============================================================================
--- llvm/trunk/lib/Target/BPF/BPFAsmPrinter.cpp (original)
+++ llvm/trunk/lib/Target/BPF/BPFAsmPrinter.cpp Tue Jun 13 11:17:20 2017
@@ -35,14 +35,15 @@ using namespace llvm;
namespace {
class BPFAsmPrinter : public AsmPrinter {
public:
- explicit BPFAsmPrinter(TargetMachine &TM, std::unique_ptr<MCStreamer> Streamer)
+ explicit BPFAsmPrinter(TargetMachine &TM,
+ std::unique_ptr<MCStreamer> Streamer)
: AsmPrinter(TM, std::move(Streamer)) {}
StringRef getPassName() const override { return "BPF Assembly Printer"; }
void EmitInstruction(const MachineInstr *MI) override;
};
-}
+} // namespace
void BPFAsmPrinter::EmitInstruction(const MachineInstr *MI) {
More information about the llvm-commits
mailing list