diff options
Diffstat (limited to 'runtime/utils.cc')
-rw-r--r-- | runtime/utils.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index 3ec9561..85c9340 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1554,13 +1554,6 @@ void EncodeSignedLeb128(int32_t data, std::vector<uint8_t>* dst) { Leb128Encoder(dst).PushBackSigned(data); } -void PushWord(std::vector<uint8_t>* buf, int data) { - buf->push_back(data & 0xff); - buf->push_back((data >> 8) & 0xff); - buf->push_back((data >> 16) & 0xff); - buf->push_back((data >> 24) & 0xff); -} - std::string PrettyDescriptor(Primitive::Type type) { return PrettyDescriptor(Primitive::Descriptor(type)); } |