From: Vinson Lee Date: Thu, 25 Jul 2013 06:28:27 +0000 (-0700) Subject: gallivm: Remove NoFramePointerElimNonLeaf for LLVM >= 3.4. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=60c248c3aff1d6a23d60afeaed78c50e4af00b8c;p=mesa.git gallivm: Remove NoFramePointerElimNonLeaf for LLVM >= 3.4. TargetOptions::NoFramePointerElimNonLeaf was removed in LLVM 3.4 r187093. Signed-off-by: Vinson Lee Reviewed-by: José Fonseca --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index 1e5adb782b8..e09bb78de17 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -281,7 +281,9 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, #endif #if defined(DEBUG) || defined(PROFILE) +#if HAVE_LLVM < 0x0304 options.NoFramePointerElimNonLeaf = true; +#endif options.NoFramePointerElim = true; #endif