aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/fftsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/fftsp.c')
-rw-r--r--test/c/fftsp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/c/fftsp.c b/test/c/fftsp.c
index 26b18b62..d327a74c 100644
--- a/test/c/fftsp.c
+++ b/test/c/fftsp.c
@@ -153,7 +153,11 @@ int main(int argc, char ** argv)
float enp, t, y, z, zr, zi, zm, a;
float * xr, * xi, * pxr, * pxi;
+#ifdef __K1C__
+ if (argc >= 2) n = atoi(argv[1]); else n = 3;
+#else
if (argc >= 2) n = atoi(argv[1]); else n = 12;
+#endif
np = 1 << n;
enp = np;
npm = np / 2 - 1;