Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: base/compiler_specific.h

Issue 6943001: Add shutdown trace functions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed include order Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browser_main_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/compiler_specific.h
diff --git a/base/compiler_specific.h b/base/compiler_specific.h
index 30603065b7004353a7e1d350eb4c276952e7565a..702047ecf157e6598994dbce302ee03449523f83 100644
--- a/base/compiler_specific.h
+++ b/base/compiler_specific.h
@@ -74,8 +74,10 @@
// int x ALLOW_UNUSED = ...;
#if defined(COMPILER_GCC)
#define ALLOW_UNUSED __attribute__((unused))
+#define NOINLINE __attribute__((noinline))
Evan Martin 2011/05/09 22:49:44 Sorry to nitpick, but the comment above doesn't ma
#else
#define ALLOW_UNUSED
+#define NOINLINE
#endif
// Annotate a virtual method indicating it must be overriding a virtual
« no previous file with comments | « no previous file | chrome/browser/browser_main_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698