projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e155af8
)
Changed uchar to unsigned char in function ParseBytecodeBuffer, because seemingly...
author
Anand Shukla
<ashukla@cs.uiuc.edu>
Fri, 20 Sep 2002 20:57:54 +0000
(20:57 +0000)
committer
Anand Shukla
<ashukla@cs.uiuc.edu>
Fri, 20 Sep 2002 20:57:54 +0000
(20:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3866
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Bytecode/Reader/Reader.cpp
patch
|
blob
|
history
diff --git
a/lib/Bytecode/Reader/Reader.cpp
b/lib/Bytecode/Reader/Reader.cpp
index dd75d7f26f864c626288ddffec6b7a8d555b5c66..22b15924d263113f1e93eb2bd50f8c148910f1a1 100644
(file)
--- a/
lib/Bytecode/Reader/Reader.cpp
+++ b/
lib/Bytecode/Reader/Reader.cpp
@@
-559,7
+559,7
@@
Module *BytecodeParser::ParseBytecode(const uchar *Buf, const uchar *EndBuf) {
}
-Module *ParseBytecodeBuffer(const uchar *Buffer, unsigned Length) {
+Module *ParseBytecodeBuffer(const u
nsigned
char *Buffer, unsigned Length) {
BytecodeParser Parser;
return Parser.ParseBytecode(Buffer, Buffer+Length);
}