From: Jacob Lifshay Date: Thu, 18 May 2023 22:43:56 +0000 (-0700) Subject: add missing closing brace from 904ea21b537f4fb0c11f2efbe63ffca36844542e X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb39257b68745b627c00904c8ba86eef13c16304;p=libreriscv.git add missing closing brace from 904ea21b537f4fb0c11f2efbe63ffca36844542e --- diff --git a/simple_v_extension/daxpy_example.mdwn b/simple_v_extension/daxpy_example.mdwn index 783e5c986..edfdddbfc 100644 --- a/simple_v_extension/daxpy_example.mdwn +++ b/simple_v_extension/daxpy_example.mdwn @@ -4,6 +4,7 @@ void daxpy(size_t n, double a, const double x[], double y[]) { for (size_t i = 0; i < n; i++) y[i] = a*x[i] + y[i]; + } ``` # SVP64 Power ISA version