mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 17:13:59 -04:00
6 lines
195 B
D
6 lines
195 B
D
// Hint: Try to compile with -O3 -release -boundscheck=off -mcpu=native
|
|
void maxArray(double[] x, double[] y) {
|
|
for (int i = 0; i < 65536; i++) {
|
|
if (y[i] > x[i]) x[i] = y[i];
|
|
}
|
|
} |