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 1f6bdfc commit cff0f09Copy full SHA for cff0f09
Tools/jit/_optimizers.py
@@ -77,7 +77,7 @@ class Optimizer:
77
_labels: dict[str, _Block] = dataclasses.field(init=False, default_factory=dict)
78
# No groups:
79
_re_noninstructions: typing.ClassVar[re.Pattern[str]] = re.compile(
80
- r"\s*(?:\.|#|//|$)"
+ r"\s*(?:\.|#|//|;|$)"
81
)
82
# One group (label):
83
_re_label: typing.ClassVar[re.Pattern[str]] = re.compile(
Tools/jit/_targets.py
@@ -430,7 +430,7 @@ def _handle_section(
430
name = name.removeprefix(self.prefix)
431
if "Debug" in flags:
432
return
433
- if "SomeInstructions" in flags:
+ if "PureInstructions" in flags:
434
value = _stencils.HoleValue.CODE
435
stencil = group.code
436
start_address = 0
0 commit comments