Skip to content

Commit

Permalink
lj_ir.h: Fix typo made when resolving merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lukego committed Jan 17, 2018
1 parent a8f76e5 commit 42bb70b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lj_ir.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ typedef struct IRType1 { uint8_t irt; } IRType1;
#define IRT_IS64 \
((1u<<IRT_NUM)|(1u<<IRT_I64)|(1u<<IRT_U64)|(1u<<IRT_P64)|\
(1u<<IRT_LIGHTUD)|(1u<<IRT_STR)|(1u<<IRT_THREAD)|(1u<<IRT_PROTO)|\
(1u<<IRT_FUNC)|(1u<<IRT_CDATA)|(1u<<IRT_TAB)|(1u<<IRT_UDATA))\
(1u<<IRT_FUNC)|(1u<<IRT_CDATA)|(1u<<IRT_TAB)|(1u<<IRT_UDATA)|\
(1u<<IRT_NIL))

#define irt_is64(t) ((IRT_IS64 >> irt_type(t)) & 1)
Expand Down

0 comments on commit 42bb70b

Please sign in to comment.