27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 27d0c526ec926de8eca10917b4a1b68080f45187 Mon Sep 17 00:00:00 2001
|
|
From: Dave Airlie <airlied@redhat.com>
|
|
Date: Thu, 21 Nov 2019 05:53:03 +1000
|
|
Subject: [PATCH] llvmpipe/ppc: fix if/ifdef confusion in backport.
|
|
|
|
Fixes: 32aba91c07f (llvmpipe: use ppc64le/ppc64 Large code model for JIT-compiled shaders)
|
|
---
|
|
src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
index ee27f346254..89d3fb9133b 100644
|
|
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
@@ -469,7 +469,7 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
|
|
*/
|
|
builder.setCodeModel(CodeModel::Large);
|
|
|
|
-#if PIPE_ARCH_LITTLE_ENDIAN
|
|
+#ifdef PIPE_ARCH_LITTLE_ENDIAN
|
|
/*
|
|
* Versions of LLVM prior to 4.0 lacked a table entry for "POWER8NVL",
|
|
* resulting in (big-endian) "generic" being returned on
|
|
--
|
|
2.21.0
|
|
|