X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Fcommon%2Fmetadata%2Fctf-meta-translate.c;h=9c9e23eeebc91f04def1e08291ff87011e35c890;hp=5c09e85af8270dc26b922f809921b24004c8104a;hb=0235b0db7de5bcacdb3650c92461f2ce5eb2143d;hpb=de821fe507f035622c474f097b226f30cd3c7491 diff --git a/src/plugins/ctf/common/metadata/ctf-meta-translate.c b/src/plugins/ctf/common/metadata/ctf-meta-translate.c index 5c09e85a..9c9e23ee 100644 --- a/src/plugins/ctf/common/metadata/ctf-meta-translate.c +++ b/src/plugins/ctf/common/metadata/ctf-meta-translate.c @@ -1,21 +1,14 @@ /* - * Copyright 2018 - Philippe Proulx + * SPDX-License-Identifier: MIT * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * Copyright 2018 Philippe Proulx */ #include #include "common/macros.h" #include "common/assert.h" #include +#include #include #include #include @@ -115,11 +108,11 @@ bt_field_class *ctf_field_class_enum_to_ir(struct ctx *ctx, if (fc->base.is_signed) { ret = bt_field_class_enumeration_signed_add_mapping( ir_fc, mapping->label->str, range_set); - BT_RANGE_SET_SIGNED_PUT_REF_AND_RESET(range_set); + BT_INTEGER_RANGE_SET_SIGNED_PUT_REF_AND_RESET(range_set); } else { ret = bt_field_class_enumeration_unsigned_add_mapping( ir_fc, mapping->label->str, range_set); - BT_RANGE_SET_UNSIGNED_PUT_REF_AND_RESET(range_set); + BT_INTEGER_RANGE_SET_UNSIGNED_PUT_REF_AND_RESET(range_set); } BT_ASSERT(ret == 0); @@ -426,7 +419,7 @@ bt_field_class *ctf_field_class_to_ir(struct ctx *ctx, ir_fc = ctf_field_class_variant_to_ir(ctx, (void *) fc); break; default: - abort(); + bt_common_abort(); } fc->ir_fc = ir_fc; @@ -484,7 +477,7 @@ bt_field_class *scope_ctf_field_class_to_ir(struct ctx *ctx) fc = ctx->ec->payload_fc; break; default: - abort(); + bt_common_abort(); } if (fc && ctf_field_class_struct_has_immediate_member_in_ir(