Loading
Home ›
Resources for “Optimization in GCC”
Mar 01, 2005 By M. Tim Jones
GCC Home page: gcc.gnu.org
Using the GNU Compiler Collection (GCC): gcc.gnu.org/onlinedocs/gcc-3.2.2/gcc
______________________
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- Readers' Choice Awards 2011
- You Need A Budget
- Linux-Based X Terminals with XDMCP
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- Why Python?
- Creating a vDSO: the Colonel's Other Chicken
- buena información
4 hours 54 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
5 hours 54 min ago - Gnome3 is such a POS. No one
15 hours 22 min ago - Gnome 3 is the biggest POS
15 hours 32 min ago - I didn't knew this thing by
21 hours 37 min ago - Author's reply
1 day 1 hour ago - Link to modlys
1 day 2 hours ago - I use YNAB because of the
1 day 2 hours ago - Search
1 day 7 hours ago - Question
1 day 7 hours ago






Comments
-O1 and inline-functions
The article states that -O is equivalent to -O0 (no optimization). The manual says -O0 and no "-O" option at all are the same, and -O is equivalent to -O1.
I am using -O with programs that require inline (using in and out macros), and I get inline function expansions for those and for memcpy etc., but the manual says the inline-functions optimization is only done with -O3. Is this an error in the manual?
Where are the source files fr
Where are the source files from your article. I am specifically interested in your timing calls. TIA