diff options
| author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2020-06-28 14:59:37 +0200 |
|---|---|---|
| committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2020-07-14 00:05:28 +0200 |
| commit | 99bcbcaf803f894fafc90d22ab4fc5db73a3016e (patch) | |
| tree | 999f138632271532e8be6ea38f823e55ca01b08d /target-nds32.c | |
| parent | fa09d838d4b241c98f85657669e11f207d26d4fd (diff) | |
| download | sparse-dev-99bcbcaf803f894fafc90d22ab4fc5db73a3016e.tar.gz | |
arch: add predefines __INT_FAST${N}_TYPE__
We just added __INT_LEAST${N}_TYPE__, so add these ones
too as they looks slightly more useful.
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'target-nds32.c')
| -rw-r--r-- | target-nds32.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-nds32.c b/target-nds32.c index 0dc483b2..e3ed2e52 100644 --- a/target-nds32.c +++ b/target-nds32.c @@ -5,6 +5,11 @@ static void init_nds32(const struct target *self) { + fast16_ctype = &int_ctype; + ufast16_ctype = &uint_ctype; + fast32_ctype = &int_ctype; + ufast32_ctype = &uint_ctype; + wchar_ctype = &uint_ctype; } |
