mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
Eliminate the uchar typedef, use unsigned char explicitly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6283 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -17,7 +17,8 @@
|
||||
#include "llvm/iPHINode.h"
|
||||
#include "llvm/iOther.h"
|
||||
|
||||
bool BytecodeParser::ParseRawInst(const uchar *&Buf, const uchar *EndBuf,
|
||||
bool BytecodeParser::ParseRawInst(const unsigned char *&Buf,
|
||||
const unsigned char *EndBuf,
|
||||
RawInst &Result) {
|
||||
unsigned Op, Typ;
|
||||
if (read(Buf, EndBuf, Op)) return true;
|
||||
@ -113,7 +114,8 @@ bool BytecodeParser::ParseRawInst(const uchar *&Buf, const uchar *EndBuf,
|
||||
}
|
||||
|
||||
|
||||
bool BytecodeParser::ParseInstruction(const uchar *&Buf, const uchar *EndBuf,
|
||||
bool BytecodeParser::ParseInstruction(const unsigned char *&Buf,
|
||||
const unsigned char *EndBuf,
|
||||
Instruction *&Res,
|
||||
BasicBlock *BB /*HACK*/) {
|
||||
RawInst Raw;
|
||||
|
Reference in New Issue
Block a user