diff options
Diffstat (limited to 'llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h')
-rw-r--r-- | llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h b/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h index 5fb7307159d18..ec11a78f8a7af 100644 --- a/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h +++ b/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h @@ -64,7 +64,7 @@ public: OpBegins.push_back(OpBegins.back() + Opcodes.size()); } - /// Finalize the unwind opcode sequence for EmitBytes() + /// Finalize the unwind opcode sequence for emitBytes() void Finalize(unsigned &PersonalityIndex, SmallVectorImpl<uint8_t> &Result); @@ -80,7 +80,7 @@ private: OpBegins.push_back(OpBegins.back() + 2); } - void EmitBytes(const uint8_t *Opcode, size_t Size) { + void emitBytes(const uint8_t *Opcode, size_t Size) { Ops.insert(Ops.end(), Opcode, Opcode + Size); OpBegins.push_back(OpBegins.back() + Size); } |