Like tests, pass the benchmarks if XLEN disagrees
[riscv-tests.git] / benchmarks / common / crt.S
index 38b963dedb7dda0b787f433baf3e4fce3ae1616f..be03ebbdb3e6b9a54ea835225d8e89963b3bb1d7 100644 (file)
@@ -55,14 +55,15 @@ _start:
   csrs mstatus, t0
 
   # make sure XLEN agrees with compilation choice
-  csrr t0, misa
+  li t0, 1
+  slli t0, t0, 31
 #if __riscv_xlen == 64
-  bltz t0, 1f
-#else
   bgez t0, 1f
+#else
+  bltz t0, 1f
 #endif
-  li a0, 1234
-  j tohost_exit
+  li a0, 1
+  sw a0, tohost, t0
 1:
 
 #ifdef __riscv_flen