d28cf653e9
This diff fixes a bunch of issues with interpOne of vector instructions that only show up when the rest of the trace is translated normally. I ran into them trying to perflab turning off the vector translator. Differential Revision: D901267
9 linhas
143 B
PHP
9 linhas
143 B
PHP
<?php
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
function main($o) {
|
|
$o = $o->circle = $o;
|
|
$o->foo();
|
|
}
|
|
main(new stdclass);
|