Skip to content

Commit 51f4969

Browse files
committed
Added missing __builtin_frac
1 parent 1e9c3bd commit 51f4969

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

Changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 7.4.2
2+
- Added missing __builtin_frac keyword for C
3+
14
Version 7.4.1
25
- Made `@@@func` return the address of the first instruction of the
36
function func, in both Spin2 and C.

frontends/lexer.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2678,6 +2678,7 @@ struct reservedword c_keywords[] = {
26782678
{ "__builtin_cogstart", C_BUILTIN_COGSTART },
26792679
{ "__builtin_cogstart_cog", C_BUILTIN_COGSTART_COG },
26802680
{ "__builtin_expect", C_BUILTIN_EXPECT },
2681+
{ "__builtin_frac", C_BUILTIN_FRAC },
26812682
{ "__builtin_longjmp", C_BUILTIN_LONGJMP },
26822683
{ "__builtin_mulh", C_BUILTIN_MULH },
26832684
{ "__builtin_muluh", C_BUILTIN_MULUH },

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define VERSION_MAJOR 7
88
#define VERSION_MINOR 4
9-
#define VERSION_REV 1
9+
#define VERSION_REV 2
1010
//#define BETA "-beta"
1111

1212
#define VERSIONSTR version_string

0 commit comments

Comments
 (0)