Petr Penzin
Petr Penzin
Right, setting `__GNUC __` yields this: ``` /usr/include/sys/cdefs.h:228: #define __aligned(x) __attribute__((__aligned__(x))) ^ expected ',' ``` _Edit:_ I've tried setting a breakpoint at the point where that error should be produced,...
Confirming on both Windows and Linux. Edit: I am going to investigate, though cannot promise that it would be very quick.
Slightly reduced test: ```JavaScript function opt(o, zz) { function foo () { String.prototype.replace.call(o, zz, {}); } foo (); } for (let xi = 0; xi < 500; xi++) { opt({},...
#6181 looks suspiciously similar to this one, I still need to take a closer look at #6487. Obvious question - are we releasing `this` when we inline a regex call,...
I agree, there might be something more fundamental here. Part of the problem is that we set liveness in a semi-manual way, which is somewhat error prone.
I've narrowed the it down to BytecodeArgOutCapture or the load after it getting eliminated by deadstore. #5854 seems to be closer to home than what we originally thought, thanks for...
Changing the parameter to `...replace.call` to explicit argument makes the error disappear: ```JavaScript function opt(o, zz) { function foo (o) { String.prototype.replace.call(o, zz, {}); } foo (o); } for (let...
`MapStFldHelper` doesn't accept `HelperOp_InitClassMember`.
@OmarMorales71 thank you for your interest! This is the most complete spec for`Math.max()`: https://tc39.es/ecma262/#sec-math.max Feel free to ask if you have any further questions!
@Harsh-Shedge sure, you can give it a try.