From: sven.panne@aedion.de Date: Thu, 10 Aug 2006 14:45:05 +0000 (+0000) Subject: Tweak GCC's inlining parameters to get thread_obj inlined X-Git-Tag: Before_FC_branch_merge~232 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=01e9deecea1f388a771a312e602a9c45898cf2af Tweak GCC's inlining parameters to get thread_obj inlined --- diff --git a/rts/Makefile b/rts/Makefile index 65c2c22..2522a0b 100644 --- a/rts/Makefile +++ b/rts/Makefile @@ -317,6 +317,9 @@ endif # -O3 helps unroll some loops (especially in copy() with a constant argument). GC_HC_OPTS += -optc-O3 +# Without this, thread_obj will not be inlined (at least on x86 with GCC 4.1.0) +GCCompact_HC_OPTS += -optc-finline-limit=2500 + # -fno-strict-aliasing is required for the runtime, because we often # use a variety of types to represent closure pointers (StgPtr, # StgClosure, StgMVar, etc.), and without -fno-strict-aliasing gcc is