[Bug tree-optimization/34563] noinline function call being removed

2023-01-29 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34563 Andrew Pinski changed: What|Removed |Added Resolution|INVALID |DUPLICATE --- Comment #13 from Andrew

[Bug tree-optimization/34563] noinline function call being removed

2008-01-18 Thread jkenisto at us dot ibm dot com
--- Comment #12 from jkenisto at us dot ibm dot com 2008-01-18 22:20 --- (In reply to comment #11) (In reply to comment #9) Since this topic came up, I've seen various suggestions for how to guarantee that a function gets inlined -- e.g., make it a varargs function, or

[Bug tree-optimization/34563] noinline function call being removed

2008-01-17 Thread jkenisto at us dot ibm dot com
--- Comment #9 from jkenisto at us dot ibm dot com 2008-01-17 18:52 --- (In reply to comment #8) (In reply to comment #7) Testing of stuff like kprobes in Linux would be a lot easier if nolinline worked reliably. See this thread, for example:

[Bug tree-optimization/34563] noinline function call being removed

2008-01-17 Thread fche at redhat dot com
--- Comment #10 from fche at redhat dot com 2008-01-17 21:04 --- Is the mailing-list suggested workaround of adding asm (); into the not-to-be-inlined test function satisfactory? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34563

[Bug tree-optimization/34563] noinline function call being removed

2008-01-17 Thread hp at gcc dot gnu dot org
--- Comment #11 from hp at gcc dot gnu dot org 2008-01-17 23:09 --- (In reply to comment #9) Since this topic came up, I've seen various suggestions for how to guarantee that a function gets inlined -- e.g., make it a varargs function, or include an empty asm statement. I assume

[Bug tree-optimization/34563] noinline function call being removed

2008-01-09 Thread jkenisto at us dot ibm dot com
--- Comment #7 from jkenisto at us dot ibm dot com 2008-01-09 22:35 --- Testing of stuff like kprobes in Linux would be a lot easier if nolinline worked reliably. See this thread, for example: http://marc.info/?l=linux-kernelm=119991179332571w=2 BTW, this sort of noinline failure can

[Bug tree-optimization/34563] noinline function call being removed

2008-01-09 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2008-01-09 22:45 --- (In reply to comment #7) Testing of stuff like kprobes in Linux would be a lot easier if nolinline worked reliably. See this thread, for example: http://marc.info/?l=linux-kernelm=119991179332571w=2 This

[Bug tree-optimization/34563] noinline function call being removed

2007-12-22 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-23 04:18 --- So we have: if (ii (_double_.fp)) ss = 0; cvt (_double_.fp, ss); ss is always set via cvt (and cvt is inlined), so we dce the first setting of ss and that in turns dce the function call to ii as it is pure.