diff options
author | Ben Crocker <[email protected]> | 2017-09-28 14:09:10 -0400 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2017-10-05 01:48:37 +0200 |
commit | 3a9feb4db8ad1e87a70c761987798b7575d522aa (patch) | |
tree | 31afa04f90beae2272af82a6e0768b87d31cb00b /src/gallium/auxiliary | |
parent | 8196a3c63ee1c31dafe7459aaadda0efbd1ac4d2 (diff) |
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" <[email protected]>
Signed-off-by: Ben Crocker <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |