diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2017-06-06 18:06:34 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2017-06-06 18:12:17 -0400 |
commit | 64c79edda0bc29d11b7efaffa9d051f64ea431d0 (patch) | |
tree | 9175df2701786764df606e347ed5b1f347916262 /all.h | |
parent | 9908ae067af59cb6e43997552cb0e03e8f082f31 (diff) | |
download | roux-64c79edda0bc29d11b7efaffa9d051f64ea431d0.tar.gz |
fix fp subtractions on amd64
The stashing of constants in gas.c was also changed to support 16-bytes constants.
Diffstat (limited to 'all.h')
-rw-r--r-- | all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h index 1abd23c..629fea3 100644 --- a/all.h +++ b/all.h @@ -517,5 +517,5 @@ void rega(Fn *); extern char *gasloc; extern char *gassym; void gasemitdat(Dat *, FILE *); -int gasstashfp(int64_t, int); +int gasstash(void *, int); void gasemitfin(FILE *); |