1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

changed first arg of parseBytecodeBuffer to unsigned char

llvm-svn: 2978
This commit is contained in:
Anand Shukla 2002-07-21 09:31:59 +00:00
parent 830bb08488
commit 206dd8cd4e

View File

@ -20,6 +20,6 @@ class Module;
//
Module *ParseBytecodeFile(const std::string &Filename,
std::string *ErrorStr = 0);
Module *ParseBytecodeBuffer(const uchar *Buffer, unsigned BufferSize);
Module *ParseBytecodeBuffer(const unsigned char *Buffer, unsigned BufferSize);
#endif