This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0c21aa
)
A type change that apparently works around a compiler bug
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Fri, 18 Aug 2006 15:46:18 +0000
(15:46 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Fri, 18 Aug 2006 15:46:18 +0000
(15:46 +0000)
(gcc 4.1.1 on Solaris) (by Robin Barker)
p4raw-id: //depot/perl@28735
pp_hot.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
aa792bf
..
32274ff
100644
(file)
--- a/
pp_hot.c
+++ b/
pp_hot.c
@@
-417,7
+417,7
@@
PP(pp_defined)
register SV* sv;
bool defined;
const int op_type = PL_op->op_type;
- const
int
is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN);
+ const
bool
is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN);
if (is_dor) {
sv = TOPs;