mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-19 18:42:23 -07:00
fix sizeof/typeof/bswap expr stringization
This commit is contained in:
+3
-3
@@ -91,9 +91,9 @@ E_ExprKindTable:
|
||||
{ Address UnaryPrefix 2 "&" "" "" "" }
|
||||
|
||||
{ Cast Null 1 "(" ")" "" "" }
|
||||
{ Sizeof UnaryPrefix 1 "sizeof" "(" ")" "" }
|
||||
{ Typeof UnaryPrefix 1 "typeof" "(" ")" "" }
|
||||
{ ByteSwap UnaryPrefix 1 "bswap" "(" ")" "" }
|
||||
{ Sizeof UnaryPrefix 1 "sizeof " "" "" "" }
|
||||
{ Typeof UnaryPrefix 1 "typeof " "" "" "" }
|
||||
{ ByteSwap UnaryPrefix 1 "bswap " "" "" "" }
|
||||
|
||||
{ Pos UnaryPrefix 2 "+" "" "" "" }
|
||||
{ Neg UnaryPrefix 2 "-" "" "" "" }
|
||||
|
||||
@@ -206,9 +206,9 @@ E_OpInfo e_expr_kind_op_info_table[49] =
|
||||
{ E_OpKind_UnaryPrefix, 2, str8_lit_comp("*"), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 2, str8_lit_comp("&"), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_Null, 1, str8_lit_comp("("), str8_lit_comp(")"), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("sizeof"), str8_lit_comp("("), str8_lit_comp(")"), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("typeof"), str8_lit_comp("("), str8_lit_comp(")"), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("bswap"), str8_lit_comp("("), str8_lit_comp(")"), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("sizeof "), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("typeof "), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 1, str8_lit_comp("bswap "), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 2, str8_lit_comp("+"), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 2, str8_lit_comp("-"), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
{ E_OpKind_UnaryPrefix, 2, str8_lit_comp("!"), str8_lit_comp(""), str8_lit_comp(""), str8_lit_comp("") },
|
||||
|
||||
Reference in New Issue
Block a user