Changed uchar to unsigned char in function ParseBytecodeBuffer, because seemingly it affects opt in uncertain ways :)

llvm-svn: 3866
This commit is contained in:
Anand Shukla 2002-09-20 20:57:54 +00:00
parent 6a2258b230
commit 8137896962
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}