# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #54110] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=54110 >
The infix and n_infix opcodes cause segfaults when invoked with
string arguments. (Kubuntu 8.04, x86, r27472)
Here's an example:
$ cat z.pir
.sub main :main
$P0 = new 'Float'
$P0 = 3
n_mul $P1, $P0, "4"
say $P1 # 12
.end
$ ./parrot z.pir
Segmentation fault
$
Pm
