Module Name: xsrc Committed By: rjs Date: Sun Jul 16 21:54:34 UTC 2023
Modified Files: xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm: lp_bld_misc.cpp Log Message: setOverrideStackAlignment() isn't in our llvm runtime library. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 \ xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp diff -u xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp:1.3 xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp:1.4 --- xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp:1.3 Mon May 9 01:27:18 2022 +++ xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp Sun Jul 16 21:54:33 2023 @@ -619,8 +619,10 @@ lp_is_function(LLVMValueRef v) extern "C" void lp_set_module_stack_alignment_override(LLVMModuleRef MRef, unsigned align) { +#if 0 #if LLVM_VERSION_MAJOR >= 13 llvm::Module *M = llvm::unwrap(MRef); M->setOverrideStackAlignment(align); #endif +#endif }