Merge branch 'master' into llvm-integration

This commit is contained in:
gingerBill
2020-03-24 15:48:57 +00:00
2 changed files with 18 additions and 2 deletions

View File

@@ -1648,8 +1648,11 @@ bool check_is_not_addressable(CheckerContext *c, Operand *o) {
return false;
}
return true;
}
if (o->mode == Addressing_MapIndex) {
return false;
}
if (o->mode != Addressing_Variable) {
return true;
}