We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335cd8f commit a1bd820Copy full SHA for a1bd820
Changelog.txt
@@ -1,5 +1,6 @@
1
Version 7.0.3
2
- Fixed .fpide search so file names are relative to the .fpide file
3
+- Made inline function expansion more robust
4
5
Version 7.0.2
6
- Avoid a crash if a .fpide file is not found
backends/asm/optimize_ir.c
@@ -5594,7 +5594,7 @@ ExpandInlines(IRList *irl)
5594
change = 1;
5595
} else {
5596
non_inline_calls++;
5597
- if (f && FuncData(f)->actual_callsites == 0) {
+ if (f && FuncData(f)->actual_callsites <= 0) {
5598
FuncData(f)->actual_callsites = 1;
5599
}
5600
0 commit comments