enable fsrra

This commit is contained in:
Zack Buhman 2025-05-09 01:17:47 -05:00
parent 70b3c72c6f
commit 5bc8114e5f
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ GENERATED ?=
AARCH = --isa=sh4 --little
CARCH ?= -m4-single-only -ml
CFLAGS += -mfsca -funsafe-math-optimizations -ffast-math
CFLAGS += -mfsca -mfsrra -funsafe-math-optimizations -ffast-math
OBJARCH = -O elf32-shl -B sh4

View File

@ -367,7 +367,7 @@ mat4x4 translate(vec3 t)
};
}
//mat4x4 rodrigues(vec4 r) __attribute__ ((optimize(1)));
mat4x4 rodrigues(vec4 r) __attribute__ ((optimize(1)));
mat4x4 rodrigues(vec4 r)
{
const vec3 k = {r.y, r.z, r.w};