mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
8077364: "if( !this )" construct prevents build on Xcode 6.3
Reviewed-by: stefank, simonis
This commit is contained in:
parent
f93a647092
commit
47d774ab34
4 changed files with 9 additions and 18 deletions
|
@ -3392,7 +3392,7 @@ const char *MatchNode::reduce_left(FormDict &globals) const {
|
|||
// Count occurrences of operands names in the leaves of the instruction
|
||||
// match rule.
|
||||
void MatchNode::count_instr_names( Dict &names ) {
|
||||
if( !this ) return;
|
||||
if( this == NULL ) return;
|
||||
if( _lChild ) _lChild->count_instr_names(names);
|
||||
if( _rChild ) _rChild->count_instr_names(names);
|
||||
if( !_lChild && !_rChild ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue