aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit/libgccjit.c
diff options
context:
space:
mode:
authorAndrea Corallo <andrea.corallo@arm.com>2019-07-22 15:33:58 +0000
committerAndrea Corallo <akrl@gcc.gnu.org>2019-07-22 15:33:58 +0000
commit9afb91b2d1aeabf49a2b76556ec6fe18dd5790f9 (patch)
treed309013fcabc632b20a4d484f748d686a4766c0f /gcc/jit/libgccjit.c
parent1c4547f16138b69f955fdc24c9523e7f8d28aa15 (diff)
downloadgcc-9afb91b2d1aeabf49a2b76556ec6fe18dd5790f9.zip
gcc-9afb91b2d1aeabf49a2b76556ec6fe18dd5790f9.tar.gz
gcc-9afb91b2d1aeabf49a2b76556ec6fe18dd5790f9.tar.bz2
[jit] check result_type in gcc_jit_context_new_unary_op
2019-07-22 Andrea Corallo <andrea.corallo@arm.com> * jit-recording.c (unary_op_reproducer_strings): Make it extern. (binary_op_reproducer_strings): Likewise. * jit-recording.h (unary_op_reproducer_strings): Likewise. (binary_op_reproducer_strings): Likewise. * libgccjit.c (gcc_jit_context_new_unary_op): Check result_type to be a numeric type. * libgccjit.c (gcc_jit_context_new_binary_op): Improve error message. 2019-07-22 Andrea Corallo <andrea.corallo@arm.com> * jit.dg/test-error-gcc_jit_context_new_unary_op-bad-res-type.c: New testcase. * jit.dg/test-error-gcc_jit_context_new_binary_op-bad-res-type.c: Adjust error message. From-SVN: r273700
Diffstat (limited to 'gcc/jit/libgccjit.c')
-rw-r--r--gcc/jit/libgccjit.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/gcc/jit/libgccjit.c b/gcc/jit/libgccjit.c
index 23e83e2..eec2f00 100644
--- a/gcc/jit/libgccjit.c
+++ b/gcc/jit/libgccjit.c
@@ -1336,6 +1336,13 @@ gcc_jit_context_new_unary_op (gcc_jit_context *ctxt,
"unrecognized value for enum gcc_jit_unary_op: %i",
op);
RETURN_NULL_IF_FAIL (result_type, ctxt, loc, "NULL result_type");
+ RETURN_NULL_IF_FAIL_PRINTF3 (
+ result_type->is_numeric (), ctxt, loc,
+ "gcc_jit_unary_op %s with operand %s "
+ "has non-numeric result_type: %s",
+ gcc::jit::unary_op_reproducer_strings[op],
+ rvalue->get_debug_string (),
+ result_type->get_debug_string ());
RETURN_NULL_IF_FAIL (rvalue, ctxt, loc, "NULL rvalue");
return (gcc_jit_rvalue *)ctxt->new_unary_op (loc, op, result_type, rvalue);
@@ -1387,9 +1394,10 @@ gcc_jit_context_new_binary_op (gcc_jit_context *ctxt,
b->get_type ()->get_debug_string ());
RETURN_NULL_IF_FAIL_PRINTF4 (
result_type->is_numeric (), ctxt, loc,
- "gcc_jit_binary_op %i with operands a: %s b: %s "
- "has non numeric result_type: %s",
- op, a->get_debug_string (), b->get_debug_string (),
+ "gcc_jit_binary_op %s with operands a: %s b: %s "
+ "has non-numeric result_type: %s",
+ gcc::jit::binary_op_reproducer_strings[op],
+ a->get_debug_string (), b->get_debug_string (),
result_type->get_debug_string ());
return (gcc_jit_rvalue *)ctxt->new_binary_op (loc, op, result_type, a, b);