diff options
| author | Richard Miller <miller.research@gmail.com> | 2020-11-09 11:36:14 +0000 |
|---|---|---|
| committer | Richard Miller <miller.research@gmail.com> | 2020-11-09 11:36:14 +0000 |
| commit | 6e84dc968bc4eaf047fbefcba2f670940718dda8 (patch) | |
| tree | 523d2f81946b1e0abe4afddf1d2fce7e1525b7d7 /utils/ic/machcap.c | |
| parent | 2a571cc0ece4073eb56d5ccfc3e061a09a353e13 (diff) | |
Add toolchain for riscv (ia ic il) and riscv64 (ja jc jl)
Because the rv64 ISA is very nearly a proper superset of rv32, the
compilers ic and jc are actually the same program, which compiles
to .i or .j depending on how it is invoked; similarly for ia/ja and
il/jl. It is also possible to invoke ia/ic/il with a '-j' option to
specify 64-bit behaviour.
Diffstat (limited to 'utils/ic/machcap.c')
| -rw-r--r-- | utils/ic/machcap.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/ic/machcap.c b/utils/ic/machcap.c new file mode 100644 index 00000000..4da0aa91 --- /dev/null +++ b/utils/ic/machcap.c @@ -0,0 +1,9 @@ +#include "gc.h" + +int +machcap(Node *n) +{ + if(n == Z) /* test */ + return thechar == 'j'; + return 0; +} |
