diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-01 14:33:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-01 14:33:14 +0000 |
commit | b79f7545f218479c6361e25f42849d88b9cef87e (patch) | |
tree | dd31c7556d5e1a467d5dfb3610c5df0ba7507ed4 /t | |
parent | ae7e4cc14be2e40a3d39a27af7d2e07ebcc705e9 (diff) | |
download | perl-b79f7545f218479c6361e25f42849d88b9cef87e.tar.gz |
Store the xhv_aux structure after the main array.
This reduces the size of HV bodies from 24 to 20 bytes on a 32 bit
build. It has the side effect of defined %symbol_table:: now always
being true. defined %hash is already deprecated.
p4raw-id: //depot/perl@24660
Diffstat (limited to 't')
-rwxr-xr-x | t/op/magic.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/magic.t b/t/op/magic.t index 4e735414c2..dccb5634d5 100755 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -358,7 +358,7 @@ if ($Is_miniperl) { # Make sure Errno hasn't been prematurely autoloaded - ok !defined %Errno::; + ok !keys %Errno::; # Test auto-loading of Errno when %! is used |