From: Ben Crocker Date: Thu, 28 Sep 2017 18:09:10 +0000 (-0400) Subject: gallivm: fix typo in debug_printf message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a9feb4db8ad1e87a70c761987798b7575d522aa;p=mesa.git gallivm: fix typo in debug_printf message In gallivm_compile_module, fix a typo in the debug_printf("Invoke as \"llc ..." message. Cc: "17.2" Signed-off-by: Ben Crocker Reviewed-by: Roland Scheidegger --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c index 9f1ade68c49..c456a97eb62 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_init.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c @@ -606,7 +606,7 @@ gallivm_compile_module(struct gallivm_state *gallivm) LLVMWriteBitcodeToFile(gallivm->module, filename); debug_printf("%s written\n", filename); debug_printf("Invoke as \"llc %s%s -o - %s\"\n", - (HAVE_LLVM >= 0x0305) ? "[-mcpu=<-mcpu option] " : "", + (HAVE_LLVM >= 0x0305) ? "[-mcpu=<-mcpu option>] " : "", "[-mattr=<-mattr option(s)>]", filename); }