mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Changed uchar to unsigned char in function ParseBytecodeBuffer, because seemingly it affects opt in uncertain ways :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3866 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e155af8376
commit
4f2d5a4d76
@ -559,7 +559,7 @@ Module *BytecodeParser::ParseBytecode(const uchar *Buf, const uchar *EndBuf) {
|
||||
}
|
||||
|
||||
|
||||
Module *ParseBytecodeBuffer(const uchar *Buffer, unsigned Length) {
|
||||
Module *ParseBytecodeBuffer(const unsigned char *Buffer, unsigned Length) {
|
||||
BytecodeParser Parser;
|
||||
return Parser.ParseBytecode(Buffer, Buffer+Length);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user