summaryrefslogtreecommitdiff
path: root/tools/llvmc/example
diff options
context:
space:
mode:
authorSanjiv Gupta <sanjiv.gupta@microchip.com>2009-08-06 04:09:26 +0000
committerSanjiv Gupta <sanjiv.gupta@microchip.com>2009-08-06 04:09:26 +0000
commit902cf02b0a79e1aaedaf8bb90511e5a92dd37532 (patch)
tree85704c337267703001da54d104f96b7ae5a94c1d /tools/llvmc/example
parent067fd3275e7d1dea7d8a5e66b655dcf4eb040206 (diff)
downloadllvm-902cf02b0a79e1aaedaf8bb90511e5a92dd37532.tar.gz
llvm-902cf02b0a79e1aaedaf8bb90511e5a92dd37532.tar.bz2
llvm-902cf02b0a79e1aaedaf8bb90511e5a92dd37532.tar.xz
llvm-ld has a new option called -b to specify the name of bitcode output file, use that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/example')
-rw-r--r--tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td b/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td
index 508652425b..3d25ab612a 100644
--- a/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td
+++ b/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td
@@ -55,7 +55,7 @@ def llvm_ld_lto : Tool<[
(in_language "llvm-bitcode"),
(out_language "llvm-bitcode"),
(output_suffix "bc"),
- (cmd_line "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -l std $INFILE -o $OUTFILE"),
+ (cmd_line "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -l std $INFILE -b $OUTFILE"),
(actions (case
(switch_on "g"), (append_cmd "-disable-opt"),
(not_empty "Wo,"), (unpack_values "Wo,"))),