We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6045a67 commit ec2971fCopy full SHA for ec2971f
Tools/cases_generator/tracer_generator.py
@@ -89,7 +89,7 @@ def dispatch_same_oparg(
89
raise analysis_error("stack_pointer needs reloading before dispatch", tkn)
90
storage.stack.flush(self.out)
91
self.out.start_line()
92
- if "specializing" in uop.annotations:
+ if isinstance(uop, Uop) and "specializing" in uop.annotations:
93
self.emit("TRACING_SPECIALIZE_DISPATCH_SAME_OPARG")
94
else:
95
self.emit(tkn)
0 commit comments