You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New arch_test.h, pulled on Jan 3rd, now doubly defines SIGALIGN when FLEN is 64. This generates very verbose compile warnings.
Please remove it from the == 64 clause, since the FLEN > XLEN check fully resolves the issue.
New arch_test.h, pulled on Jan 3rd, now doubly defines SIGALIGN when FLEN is 64. This generates very verbose compile warnings.
Please remove it from the == 64 clause, since the FLEN > XLEN check fully resolves the issue.
#if FLEN==64
#define FLREG fld
#define FSREG fsd
#define FREGWIDTH 8
#define SIGALIGN 8
#else
#if FLEN==32
#define FLREG flw
#define FSREG fsw
#define FREGWIDTH 4
#endif
#endif
#if FLEN>XLEN
#define SIGALIGN FREGWIDTH
#else
#define SIGALIGN REGWIDTH
#endif
The text was updated successfully, but these errors were encountered: