Hi, I look at the tests and it looks that we almost never use "-always-inline" (7 tests) and "-partial-inliner" (1 tests). Are they deprecated? Are we going to remove them eventually? Thanks - Kuba
On Jun 26, 2011, at 9:57 AM, Jakub Staszak wrote:> Hi, > > I look at the tests and it looks that we almost never use "-always-inline" (7 tests) and "-partial-inliner" (1 tests). Are they deprecated? Are we going to remove them eventually?The partial inliner is an experiment that is abandoned AFAIK. The always inliner is used by all of our C compilers as an early pass that handles attribute(always_inline) functions. It isn't going away. -Chris