Skip to content

Commit 1827f38

Browse files
committed
Merge from mainline for PR2886.
llvm-svn: 58033
1 parent 8ba6114 commit 1827f38

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

llvm/autoconf/configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -610,10 +610,10 @@ AC_PATH_PROG(POD2MAN, [pod2man])
610610
AC_PATH_PROG(RUNTEST, [runtest])
611611
DJ_AC_PATH_TCLSH
612612
AC_PATH_PROG(ZIP, [zip])
613-
AC_PATH_PROGS(OCAMLC, [ocamlc.opt ocamlc])
614-
AC_PATH_PROGS(OCAMLOPT, [ocamlopt.opt ocamlopt])
615-
AC_PATH_PROGS(OCAMLDEP, [ocamldep.opt ocamldep])
616-
AC_PATH_PROGS(OCAMLDOC, [ocamldoc.opt ocamldoc])
613+
AC_PATH_PROGS(OCAMLC, [ocamlc])
614+
AC_PATH_PROGS(OCAMLOPT, [ocamlopt])
615+
AC_PATH_PROGS(OCAMLDEP, [ocamldep])
616+
AC_PATH_PROGS(OCAMLDOC, [ocamldoc])
617617

618618
dnl Determine if the linker supports the -R option.
619619
AC_LINK_USE_R

llvm/configure

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8139,7 +8139,7 @@ echo "${ECHO_T}no" >&6; }
81398139
fi
81408140

81418141

8142-
for ac_prog in ocamlc.opt ocamlc
8142+
for ac_prog in ocamlc
81438143
do
81448144
# Extract the first word of "$ac_prog", so it can be a program name with args.
81458145
set dummy $ac_prog; ac_word=$2
@@ -8184,7 +8184,7 @@ fi
81848184
test -n "$OCAMLC" && break
81858185
done
81868186

8187-
for ac_prog in ocamlopt.opt ocamlopt
8187+
for ac_prog in ocamlopt
81888188
do
81898189
# Extract the first word of "$ac_prog", so it can be a program name with args.
81908190
set dummy $ac_prog; ac_word=$2
@@ -8229,7 +8229,7 @@ fi
82298229
test -n "$OCAMLOPT" && break
82308230
done
82318231

8232-
for ac_prog in ocamldep.opt ocamldep
8232+
for ac_prog in ocamldep
82338233
do
82348234
# Extract the first word of "$ac_prog", so it can be a program name with args.
82358235
set dummy $ac_prog; ac_word=$2
@@ -8274,7 +8274,7 @@ fi
82748274
test -n "$OCAMLDEP" && break
82758275
done
82768276

8277-
for ac_prog in ocamldoc.opt ocamldoc
8277+
for ac_prog in ocamldoc
82788278
do
82798279
# Extract the first word of "$ac_prog", so it can be a program name with args.
82808280
set dummy $ac_prog; ac_word=$2

llvm/test/Bindings/Ocaml/analysis.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_analysis.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_analysis.cma %s -o %t 2> /dev/null
22
* RUN: ./%t %t.bc
33
*)
44

llvm/test/Bindings/Ocaml/bitreader.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_bitreader.cma llvm_bitwriter.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_bitreader.cma llvm_bitwriter.cma %s -o %t 2> /dev/null
22
* RUN: ./%t %t.bc
33
* RUN: llvm-dis < %t.bc | grep caml_int_ty
44
*)

llvm/test/Bindings/Ocaml/bitwriter.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_bitwriter.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_bitwriter.cma %s -o %t 2> /dev/null
22
* RUN: ./%t %t.bc
33
* RUN: llvm-dis < %t.bc | grep caml_int_ty
44
*)

llvm/test/Bindings/Ocaml/executionengine.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_target.cma llvm_executionengine.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_target.cma llvm_executionengine.cma %s -o %t 2> /dev/null
22
* RUN: ./%t %t.bc
33
*)
44

llvm/test/Bindings/Ocaml/scalar_opts.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_scalar_opts.cma llvm_target.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_scalar_opts.cma llvm_target.cma %s -o %t 2> /dev/null
22
*)
33

44
(* Note: It takes several seconds for ocamlc to link an executable with

llvm/test/Bindings/Ocaml/target.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_target.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_target.cma %s -o %t 2> /dev/null
22
*)
33

44
(* Note: It takes several seconds for ocamlc to link an executable with

llvm/test/Bindings/Ocaml/vmcore.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(* RUN: %ocamlc -warn-error A llvm.cma llvm_analysis.cma llvm_bitwriter.cma %s -o %t
1+
(* RUN: %ocamlc -warn-error A llvm.cma llvm_analysis.cma llvm_bitwriter.cma %s -o %t 2> /dev/null
22
* RUN: ./%t %t.bc
33
* RUN: llvm-dis < %t.bc > %t.ll
44
*)

0 commit comments

Comments
 (0)