Fix build error using GCC 4.7.4

JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
This commit is contained in:
Evgeny Gavrin 2015-06-29 20:47:15 +03:00
parent 4870550c8a
commit be2de16a4e

View File

@ -1171,7 +1171,10 @@ dump_call_additional_info (opcode_call_flags_t flags, /**< call flags */
const opcode_t opcode = getop_meta (OPCODE_META_TYPE_CALL_SITE_INFO,
flags,
(flags & OPCODE_CALL_FLAGS_HAVE_THIS_ARG) ? this_arg.data.uid : INVALID_VALUE);
(idx_t) (flags & OPCODE_CALL_FLAGS_HAVE_THIS_ARG
? this_arg.data.uid
: INVALID_VALUE));
serializer_dump_op_meta (create_op_meta_000 (opcode));
} /* dump_call_additional_info */