Import of pkgsrc-2015Q3
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
$NetBSD: patch-js_src_jit-LIR.cpp,v 1.2 2015/05/12 22:48:54 ryoon Exp $
|
||||
$NetBSD: patch-js_src_jit-LIR.cpp,v 1.3 2015/09/23 06:44:42 ryoon Exp $
|
||||
|
||||
--- js/src/jit/LIR.cpp.orig 2015-05-04 00:43:27.000000000 +0000
|
||||
--- js/src/jit/LIR.cpp.orig 2015-08-24 21:53:12.000000000 +0000
|
||||
+++ js/src/jit/LIR.cpp
|
||||
@@ -323,7 +323,7 @@ LNode::printName(FILE* fp, Opcode op)
|
||||
@@ -323,7 +323,7 @@ LNode::printName(GenericPrinter& out, Op
|
||||
const char* name = names[op];
|
||||
size_t len = strlen(name);
|
||||
for (size_t i = 0; i < len; i++)
|
||||
- fprintf(fp, "%c", tolower(name[i]));
|
||||
+ fprintf(fp, "%c", tolower(((unsigned char)name[i])));
|
||||
- out.printf("%c", tolower(name[i]));
|
||||
+ out.printf("%c", tolower((unsigned char)name[i]));
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user