from what i understand you shouldn't have to call it... as your defining your own __autoload() with spl_autoload_register().
here is my bootstrapper that defines the spl_autoload_register().
define('BASEPATH' , realpath(dirname(__FILE__)));
define('SYSTEM' , BASEPATH .'/');
define('APPLICATION' , BASEPATH . '/application/');
define('LIB' , SYSTEM. '/library/');
define('OBJECTIVE' , true);
define('EXT' , '.php');
require_once(SYSTEM . 'loader' . EXT);
spl_autoload_register('Loader::load');
// i should not have to call this?
$load = new Loader;
$load->load('test' , false);
// test case...
$test = new test();
$test->ObjectiveInfo();