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 2f0dd20 commit 0bfb385Copy full SHA for 0bfb385
pythonbpf/expr_pass.py
@@ -119,9 +119,7 @@ def _handle_ctypes_call(
119
return None
120
call_type = expr.func.id
121
expected_type = ctypes_to_ir(call_type)
122
- if expected_type is None:
123
- logger.info(f"Unsupported ctypes type: {call_type}")
124
- return None
+
125
if val[1] != expected_type:
126
# NOTE: We are only considering casting to and from int types for now
127
if isinstance(val[1], ir.IntType) and isinstance(expected_type, ir.IntType):
0 commit comments