diff options
| author | Jim Grosbach <grosbach@apple.com> | 2015-05-15 19:13:16 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2015-05-15 19:13:16 +0000 |
| commit | 91df21f740f96e7128f24fc9be575ecfb3c57b03 (patch) | |
| tree | fee4620504a94e40819ed2645429da1a6fea9c4e /llvm/lib/Target/BPF | |
| parent | 63661f8d7334ace4a8f830dab053a13384e3b154 (diff) | |
| download | bcm5719-llvm-91df21f740f96e7128f24fc9be575ecfb3c57b03.tar.gz bcm5719-llvm-91df21f740f96e7128f24fc9be575ecfb3c57b03.zip | |
MC: Update MCCodeEmitter naming. NFC.
s/EncodeInstruction/encodeInstruction/
llvm-svn: 237469
Diffstat (limited to 'llvm/lib/Target/BPF')
| -rw-r--r-- | llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp b/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp index 108b600d389..ba8a874e496 100644 --- a/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp +++ b/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp @@ -52,7 +52,7 @@ public: SmallVectorImpl<MCFixup> &Fixups, const MCSubtargetInfo &STI) const; - void EncodeInstruction(const MCInst &MI, raw_ostream &OS, + void encodeInstruction(const MCInst &MI, raw_ostream &OS, SmallVectorImpl<MCFixup> &Fixups, const MCSubtargetInfo &STI) const override; }; @@ -117,7 +117,7 @@ void EmitBEConstant(uint64_t Val, unsigned Size, unsigned &CurByte, EmitByte((Val >> i) & 255, CurByte, OS); } -void BPFMCCodeEmitter::EncodeInstruction(const MCInst &MI, raw_ostream &OS, +void BPFMCCodeEmitter::encodeInstruction(const MCInst &MI, raw_ostream &OS, SmallVectorImpl<MCFixup> &Fixups, const MCSubtargetInfo &STI) const { unsigned Opcode = MI.getOpcode(); |

