[bugpoint] Find 'opt', etc., in bugpoint directory
Summary:
When bugpoint attempts to find the other executables it needs to run,
such as `opt` or `clang`, it tries searching the user's PATH. However,
in many cases, the 'bugpoint' executable is part of an LLVM build, and
the 'opt' executable it's looking for is in that same directory.
Many LLVM tools handle this case by using the `Paths` parameter of
`llvm::sys::findProgramByName`, passing the parent path of the currently
running executable. Do this same thing for bugpoint. However, to
preserve the current behavior exactly, first search the user's PATH,
and then search for 'opt' in the directory containing 'bugpoint'.
Test Plan:
`check-llvm`. Many of the existing bugpoint tests no longer need to use the
`--opt-command` option as a result of these changes.
Reviewers: MatzeB, silvas, davide
Reviewed By: MatzeB, davide
Subscribers: davide, llvm-commits
Differential Revision: https://reviews.llvm.org/D54884
llvm-svn: 348734
2018-12-10 08:56:13 +08:00
|
|
|
; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes
|
2010-06-08 04:58:11 +08:00
|
|
|
; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
|
2019-05-17 14:41:04 +08:00
|
|
|
; REQUIRES: plugins
|
2003-06-25 07:40:27 +08:00
|
|
|
|
2015-07-26 19:37:05 +08:00
|
|
|
; Test to make sure that arguments are removed from the function if they are
|
|
|
|
; unnecessary. And clean up any types that frees up too.
|
2010-06-08 04:28:37 +08:00
|
|
|
|
2015-09-16 13:34:32 +08:00
|
|
|
; CHECK: ModuleID
|
2010-06-08 04:28:37 +08:00
|
|
|
; CHECK-NOT: struct.anon
|
|
|
|
%struct.anon = type { i32 }
|
2003-06-25 07:40:27 +08:00
|
|
|
|
2007-03-20 02:08:42 +08:00
|
|
|
declare i32 @test2()
|
|
|
|
|
2010-06-08 04:20:33 +08:00
|
|
|
; CHECK: define void @test() {
|
2010-06-08 04:28:37 +08:00
|
|
|
define i32 @test(i32 %A, %struct.anon* %B, float %C) {
|
2007-03-20 02:08:42 +08:00
|
|
|
call i32 @test2()
|
|
|
|
ret i32 %1
|
2003-06-25 07:40:27 +08:00
|
|
|
}
|