>>>>> "Michael" == Michael Hudson-Doyle <michael.hud...@linaro.org> writes:
>> My preferred languages for these tests would be (in approximate order) >> c, c++, fortran, java, ada, go. That order is based on which languages >> are tested most by users. Michael> Well of course it cannot be done in C or C++. A commenter on the PR Michael> said that while fortran does allow passing arrays by value, it's all Michael> handled in the frontend. No idea about Java. You cannot pass arrays by value in Java. In Java an array is a subclass of Object; in gcc internals terms it is just a pointer. Tom