gallivm: fix typo in debug_printf message
authorBen Crocker <bcrocker@redhat.com>
Thu, 28 Sep 2017 18:09:10 +0000 (14:09 -0400)
committerRoland Scheidegger <sroland@vmware.com>
Wed, 4 Oct 2017 23:48:37 +0000 (01:48 +0200)
In gallivm_compile_module, fix a typo in the
debug_printf("Invoke as \"llc ..." message.

Cc: "17.2" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Ben Crocker <bcrocker@redhat.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
src/gallium/auxiliary/gallivm/lp_bld_init.c

index 9f1ade68c4937974331f31fc420886bf7e99def5..c456a97eb627d20e977776817c249d804aa54d8f 100644 (file)
@@ -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);
    }