mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
- Fix build with Clang.
This commit is contained in:
parent
5783a95ad7
commit
3bb3b98b9e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=276695
1 changed files with 13 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
--- ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp.orig 2011-06-30 00:17:41.495446920 +0200
|
||||
+++ ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp 2011-06-30 00:19:46.885439368 +0200
|
||||
@@ -2493,8 +2493,10 @@
|
||||
vPC += OPCODE_LENGTH(op_get_by_pname);
|
||||
NEXT_INSTRUCTION();
|
||||
}
|
||||
+ {
|
||||
Identifier propertyName(callFrame, subscript.toString(callFrame));
|
||||
result = baseValue.get(callFrame, propertyName);
|
||||
+ }
|
||||
CHECK_FOR_EXCEPTION();
|
||||
callFrame->r(dst) = result;
|
||||
vPC += OPCODE_LENGTH(op_get_by_pname);
|
Loading…
Add table
Reference in a new issue