Bug #6930 ยป insns.def.warning.patch
insns.def | ||
---|---|---|
(VALUE target, VALUE pattern)
|
||
(VALUE result)
|
||
{
|
||
enum vm_check_match_type checkmatch_type =
|
||
(enum vm_check_match_type)(flag & VM_CHECKMATCH_TYPE_MASK);
|
||
result = Qfalse;
|
||
if (flag & VM_CHECKMATCH_ARRAY) {
|
||
... | ... | |
}
|
||
}
|
||
else {
|
||
if (RTEST(check_match(pattern, target, flag & VM_CHECKMATCH_TYPE_MASK))) {
|
||
if (RTEST(check_match(pattern, target, checkmatch_type))) {
|
||
result = Qtrue;
|
||
}
|
||
}
|