diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 09:06:54 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 09:06:54 +0000 |
commit | 636aa20056f2b242c296c0c0f55bbd4d21332966 (patch) | |
tree | 92c2decbbd8379fd6e7901fa3728eed395a5137d /target-ppc/cpu.h | |
parent | facd2857783d58387885ad7cb1e4a8386f241738 (diff) |
Replace always_inline with inline
We define inline as always_inline.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-ppc/cpu.h')
-rw-r--r-- | target-ppc/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 8c1029e6f9..6f37f4be7b 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -781,7 +781,7 @@ int ppcemb_tlb_search (CPUPPCState *env, target_ulong address, uint32_t pid); #endif #endif -static always_inline uint64_t ppc_dump_gpr (CPUPPCState *env, int gprn) +static inline uint64_t ppc_dump_gpr(CPUPPCState *env, int gprn) { uint64_t gprv; |