diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-12-20 06:54:52 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-21 07:06:13 -0800 |
commit | be6d3c15968f42201520d9a3b83b92e839bbc6c5 (patch) | |
tree | d3c5a6fb47a6b5204b66bd436f54a209ba7e17c5 /ext/Opcode | |
parent | 1cc1a1a3a2a7e06aef7fbe3404b81061ea641b7a (diff) | |
download | perl-be6d3c15968f42201520d9a3b83b92e839bbc6c5.tar.gz |
Use GIMME_V in Opcode
GIMME_V is a simpler macro that results in smaller machine code.
Diffstat (limited to 'ext/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Opcode/Opcode.xs b/ext/Opcode/Opcode.xs index 9d657f884c..3b6d27525f 100644 --- a/ext/Opcode/Opcode.xs +++ b/ext/Opcode/Opcode.xs @@ -525,7 +525,7 @@ CODE: void opcodes() PPCODE: - if (GIMME == G_ARRAY) { + if (GIMME_V == G_ARRAY) { croak("opcodes in list context not yet implemented"); /* XXX */ } else { |