Commit f9196a7
authored
adds more (and fixes existing) GCC-specific builtin floating types (#40)
* adds the C99 _Bool type
Note, this type is different from any integer types as, in
```
_Bool a=1, b=2;
assert(a == b);
```
the assertion holds.
* adds more (and fixes existing) GCC-specific builtin floating types
After reading more carefully this document [1] we noticed that some of the
types were missing and some were misnamed
[1]: https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html1 parent c167bb8 commit f9196a7
1 file changed
+11
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | | - | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
145 | 152 | | |
146 | | - | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
147 | 156 | | |
148 | 157 | | |
149 | 158 | | |
| |||
0 commit comments