Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / auto / Inline / with_configs.al
# NOTE: Derived from blib/lib/Inline.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Inline;
#line 956 "blib/lib/Inline.pm (autosplit into blib/lib/auto/Inline/with_configs.al)"
#==============================================================================
# Get config hints
#==============================================================================
sub with_configs {
my $o = shift;
my @configs;
for my $mod (@{$o->{CONFIG}{WITH}}) {
my $ref = eval {
no strict 'refs';
&{$mod . "::Inline"}($o->{API}{language});
};
croak M25_no_WITH_support($mod, $@) if $@;
push @configs, %$ref;
}
return @configs;
}
# end of Inline::with_configs
1;