diff --git a/llvm/test/BugPoint/crash-narrowfunctiontest.ll b/llvm/test/BugPoint/crash-narrowfunctiontest.ll index 6ad09d2e25cdf37ce0a7fb242fb146ac0892415d..aec90f1960a0193be9269bb79330604f87c05cfb 100644 --- a/llvm/test/BugPoint/crash-narrowfunctiontest.ll +++ b/llvm/test/BugPoint/crash-narrowfunctiontest.ll @@ -1,6 +1,7 @@ ; Test that bugpoint can narrow down the testcase to the important function +; FIXME: This likely fails on windows ; -; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null +; RUN: bugpoint -load %llvmlibsdir/BugpointPasses.so %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null define i32 @foo() { ret i32 1 } diff --git a/llvm/test/BugPoint/remove_arguments_test.ll b/llvm/test/BugPoint/remove_arguments_test.ll index 439ea545468e013ad0f8088bd40a37757bfdd887..62a4dd32ac8196505e876266bc899a931dd72681 100644 --- a/llvm/test/BugPoint/remove_arguments_test.ll +++ b/llvm/test/BugPoint/remove_arguments_test.ll @@ -1,4 +1,5 @@ -; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes +; FIXME: This likely fails on windows +; RUN: bugpoint -load %llvmlibsdir/BugpointPasses.so %s -output-prefix %t -bugpoint-crashcalls -silence-passes ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s ; Test to make sure that arguments are removed from the function if they are diff --git a/llvm/tools/Makefile b/llvm/tools/Makefile index 6e23dac111ef04bc21c9259edd3a3c1a4539add2..7e5f3aa25fd8512c858086f0bca519025825c8ba 100644 --- a/llvm/tools/Makefile +++ b/llvm/tools/Makefile @@ -20,7 +20,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \ llc llvm-ranlib llvm-ar llvm-nm \ llvm-ld llvm-prof llvm-link \ lli llvm-extract llvm-mc \ - bugpoint llvm-bcanalyzer llvm-stub \ + bugpoint bugpoint-passes llvm-bcanalyzer llvm-stub \ llvmc # Let users override the set of tools to build from the command line. diff --git a/llvm/tools/bugpoint/TestPasses.cpp b/llvm/tools/bugpoint-passes/TestPasses.cpp similarity index 100% rename from llvm/tools/bugpoint/TestPasses.cpp rename to llvm/tools/bugpoint-passes/TestPasses.cpp