Skip to content

Commit

Permalink
compiler: Add pointer indexed
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoeLeibowitz committed Jul 25, 2024
1 parent cb3079e commit e0b7b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devito/ir/iet/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ def functions(self):

@property
def expr_symbols(self):
ret = [self.pointer]
ret = [self.pointer.indexed]
if self.pointer.is_PointerArray or self.pointer.is_TempFunction:
ret.append(self.pointee.indexed)
ret.extend(flatten(i.free_symbols for i in self.pointee.symbolic_shape[1:]))
Expand Down

0 comments on commit e0b7b57

Please sign in to comment.