File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,14 +109,14 @@ static bool arg_is_type_compatible(
109
109
110
110
// any integer-vs-enum-vs-pointer is ok
111
111
if (
112
- call_type.id () == ID_signedbv || call_type.id () == ID_unsigned ||
112
+ call_type.id () == ID_signedbv || call_type.id () == ID_unsignedbv ||
113
113
call_type.id () == ID_bool || call_type.id () == ID_c_bool ||
114
114
call_type.id () == ID_c_enum_tag || call_type.id () == ID_c_enum ||
115
115
call_type.id () == ID_pointer)
116
116
{
117
117
return function_type.id () == ID_signedbv ||
118
- function_type.id () == ID_unsigned || function_type. id () == ID_bool ||
119
- function_type.id () == ID_c_bool ||
118
+ function_type.id () == ID_unsignedbv ||
119
+ function_type.id () == ID_bool || function_type. id () == ID_c_bool ||
120
120
function_type.id () == ID_pointer ||
121
121
function_type.id () == ID_c_enum ||
122
122
function_type.id () == ID_c_enum_tag;
You can’t perform that action at this time.
0 commit comments