Skip to content

Commit b4caa62

Browse files
committed
Remove spurious space
1 parent ab58719 commit b4caa62

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

Python/executor_cases.c.h

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tools/cases_generator/tier2_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def write_uop(uop: Uop, out: CWriter, stack: Stack) -> None:
123123
if cache.size == 4:
124124
type = "PyObject *"
125125
else:
126-
type = f"uint{cache.size*16}_t "
127-
out.emit(f"{type}{cache.name} = ({type})CURRENT_OPERAND();\n")
126+
type = f"uint{cache.size*16}_t"
127+
out.emit(f"{type} {cache.name} = ({type})CURRENT_OPERAND();\n")
128128
emit_tokens(out, uop, stack, None, TIER2_REPLACEMENT_FUNCTIONS)
129129
if uop.properties.stores_sp:
130130
for i, var in enumerate(uop.stack.outputs):

0 commit comments

Comments
 (0)