-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typecheck unreachable code #18707
base: master
Are you sure you want to change the base?
Typecheck unreachable code #18707
Changes from all commits
be1071e
d996918
07de5bf
bac268b
2da4b7c
ba9dab2
7c39efa
18642d0
879b274
c62093e
e242b5e
69efb41
f846af7
390ade8
f3ba149
92a4428
c76d422
be1d524
13ad1cb
53553e7
6cc9930
4ddd34e
3cda7db
6e97289
28894ce
be6573e
4718cfd
475f8b1
72349c0
ca11151
22e73d5
2bd0802
8fb6fab
0f41d33
b641ed4
dcc4f29
98abde4
390388a
dc8ed71
102ac11
f7f8915
bc8cb90
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -222,15 +222,16 @@ def visit_call_c(self, op: CallC) -> str: | |
def visit_primitive_op(self, op: PrimitiveOp) -> str: | ||
args = [] | ||
arg_index = 0 | ||
type_arg_index = 0 | ||
# type_arg_index = 0 | ||
for arg_type in zip(op.desc.arg_types): | ||
if arg_type: | ||
args.append(self.format("%r", op.args[arg_index])) | ||
arg_index += 1 | ||
else: | ||
assert op.type_args | ||
args.append(self.format("%r", op.type_args[type_arg_index])) | ||
type_arg_index += 1 | ||
assert False | ||
# assert op.type_args | ||
# args.append(self.format("%r", op.type_args[type_arg_index])) | ||
# type_arg_index += 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's this change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure -- it seems this code is somehow unreachable (there's no |
||
|
||
args_str = ", ".join(args) | ||
if op.is_void: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This expression is duplicated quite a lot. Would it make sense to move this to a helper function?