disable-mem2reg and disable-gvn options should not be used by the driver.
authorSanjiv Gupta <sanjiv.gupta@microchip.com>
Fri, 26 Feb 2010 18:38:44 +0000 (18:38 +0000)
committerSanjiv Gupta <sanjiv.gupta@microchip.com>
Fri, 26 Feb 2010 18:38:44 +0000 (18:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97236 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td

index ab9c3f27f490951a6f68f8fdab57ecaa3cd235a7..25149ad72f493d466eed83623adff83b79eba385 100644 (file)
@@ -114,7 +114,7 @@ def llvm_ld : Tool<[
  (in_language "llvm-bitcode"),
  (out_language "llvm-bitcode"),
  (output_suffix "bc"),
- (command "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -disable-gvn -disable-licm-promotion -disable-mem2reg -l std"),
+ (command "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -disable-licm-promotion -l std"),
  (out_file_option "-b"),
  (actions (case
           (switch_on "O0"), (append_cmd "-disable-opt"),
@@ -133,7 +133,7 @@ def llvm_ld_optimizer : Tool<[
  (output_suffix "bc"),
 // FIXME: we are still not disabling licm-promotion.
 // -disable-licm-promotion and building stdn library causes c16-71 to fail.
- (command "$CALL(GetBinDir)llvm-ld -disable-gvn -disable-mem2reg"),
+ (command "$CALL(GetBinDir)llvm-ld "),
  (out_file_option "-b"),
  (actions (case
           (switch_on "O0"), (append_cmd "-disable-opt"),
@@ -149,7 +149,7 @@ def pic16passes : Tool<[
  (in_language "llvm-bitcode"),
  (out_language "llvm-bitcode"),
  (output_suffix "obc"),
- (command "$CALL(GetBinDir)opt -pic16cg -pic16overlay -f"),
+ (command "$CALL(GetBinDir)opt -pic16cloner -pic16overlay -f"),
  (actions (case
           (switch_on "O0"), (append_cmd "-disable-opt")))
 ]>;