Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95345
b: refs/heads/master
c: ae3a006
h: refs/heads/master
i:
  95343: 670f82f
v: v3
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Apr 30, 2008
1 parent 741be97 commit 0aab5c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53809d7eaef9503eb2589babdaba5ef0b661bb14
refs/heads/master: ae3a0064e6d69068b1c9fd075095da062430bda9
5 changes: 3 additions & 2 deletions trunk/include/linux/compiler-gcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
BUILD_BUG_ON_ZERO(__builtin_types_compatible_p(typeof(a), typeof(&a[0])))

/*
* Force always-inline if the user requests it so via the .config:
* Force always-inline if the user requests it so via the .config,
* or if gcc is too old:
*/
#if !defined(CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING) || \
!defined(CONFIG_OPTIMIZE_INLINING) && (__GNUC__ >= 4)
!defined(CONFIG_OPTIMIZE_INLINING) || (__GNUC__ < 4)
# define inline inline __attribute__((always_inline))
# define __inline__ __inline__ __attribute__((always_inline))
# define __inline __inline __attribute__((always_inline))
Expand Down

0 comments on commit 0aab5c9

Please sign in to comment.