From fdab8722240b722204f57ba2eebd8ee73309c118 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 13 Oct 2021 11:25:15 +1000 Subject: [PATCH] clc: initialise one more llvm stage Reviewed-by: Jason Ekstrand Reviewed-by: Jesse Natalie Reviewed-by: Icecream95 Part-of: --- src/compiler/clc/clc_helpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/clc/clc_helpers.cpp b/src/compiler/clc/clc_helpers.cpp index 189152c5849..73d34ddab72 100644 --- a/src/compiler/clc/clc_helpers.cpp +++ b/src/compiler/clc/clc_helpers.cpp @@ -1153,5 +1153,6 @@ clc_initialize_llvm(void) LLVMInitializeAllTargets(); LLVMInitializeAllTargetInfos(); LLVMInitializeAllTargetMCs(); + LLVMInitializeAllAsmParsers(); LLVMInitializeAllAsmPrinters(); }