Skip to content
Snippets Groups Projects
Commit 5ab75b3a authored by Frederik Hennig's avatar Frederik Hennig
Browse files

fix assignment pattern

parent 592c21e0
No related merge requests found
Pipeline #61027 failed with stages
in 4 minutes and 26 seconds
...@@ -89,9 +89,9 @@ class KernelAnalysis: ...@@ -89,9 +89,9 @@ class KernelAnalysis:
for asm in asms: for asm in asms:
self._visit(asm) self._visit(asm)
case Assignment(lhs, rhs): case Assignment():
self._handle_rhs(rhs) self._handle_rhs(obj.rhs)
self._handle_lhs(lhs) self._handle_lhs(obj.lhs)
case unknown: case unknown:
raise KernelConstraintsError( raise KernelConstraintsError(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment