Arquivos
hhvm/hphp/test/quick/setm-method.php
T
bsimmers d28cf653e9 interpOne bugfixes for vector instructions
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
2013-07-31 08:06:31 -07:00

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);