[llvm] r173893 - build: regenerate configure

Galina Kistanova gkistanova at gmail.com
Wed Jan 30 12:15:27 PST 2013


Hi Saleem,

This revision added test failure on clang-native-arm-cortex-a9 builder:

******************** TEST 'LLVM ::
Transforms/LoopVectorize/min-trip-count-switch.ll' FAILED
********************
Script:
--
/home/buildslave/slave_as-bldslv2/clang-native-arm-cortex-a9/llvm/Release+Asserts/bin/opt
<
/home/buildslave/slave_as-bldslv2/clang-native-arm-cortex-a9/llvm/test/Transforms/LoopVectorize/min-trip-count-switch.ll
-loop-vectorize -force-vector-unroll=1 -vectorizer-min-trip-count=1
-force-vector-width=4 -dce -instcombine -S |
/home/buildslave/slave_as-bldslv2/clang-native-arm-cortex-a9/llvm/Release+Asserts/bin/FileCheck
/home/buildslave/slave_as-bldslv2/clang-native-arm-cortex-a9/llvm/test/Transforms/LoopVectorize/min-trip-count-switch.ll
--
Exit Code: 1
Command Output (stderr):
--
/home/buildslave/slave_as-bldslv2/clang-native-arm-cortex-a9/llvm/test/Transforms/LoopVectorize/min-trip-count-switch.ll:6:10:
error: expected string not found in input
; CHECK: <4 x float>
         ^
<stdin>:1:1: note: scanning from here
; ModuleID = '<stdin>'
^
<stdin>:11:32: note: possible intended match here
 %arrayidx = getelementptr inbounds float* %a, i64 %indvars.iv
                               ^
--

********************

http://lab.llvm.org:8011/builders/clang-native-arm-cortex-a9/builds/4725

Please let me know if you need more info.

Thanks

Galina




On Tue, Jan 29, 2013 at 8:44 PM, Saleem Abdulrasool
<compnerd at compnerd.org>wrote:

> Author: compnerd
> Date: Tue Jan 29 22:44:17 2013
> New Revision: 173893
>
> URL: http://llvm.org/viewvc/llvm-project?rev=173893&view=rev
> Log:
> build: regenerate configure
>
> Regenerate configure script for new option to make the buildbots happy.
>
> Signed-off-by: Saleem Abdulrasool <compnerd at compnerd.org>
>
> Modified:
>     llvm/trunk/configure
>
> Modified: llvm/trunk/configure
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=173893&r1=173892&r2=173893&view=diff
>
> ==============================================================================
> --- llvm/trunk/configure (original)
> +++ llvm/trunk/configure Tue Jan 29 22:44:17 2013
> @@ -769,6 +769,7 @@ NO_MISSING_FIELD_INITIALIZERS
>  COVERED_SWITCH_DEFAULT
>  NO_MAYBE_UNINITIALIZED
>  NO_UNINITIALIZED
> +PYTHON
>  USE_UDIS86
>  USE_OPROFILE
>  USE_INTEL_JITEVENTS
> @@ -1469,6 +1470,7 @@ Optional Packages:
>    --with-bug-report-url   Specify the URL where bug reports should be
>                            submitted (default=http://llvm.org/bugs/)
>    --with-internal-prefix  Installation directory for internal files
> +  --with-python           path to python
>    --with-udis86=<path>    Use udis86 external x86 disassembler library
>    --with-oprofile=<prefix>
>                            Tell OProfile >= 0.9.4 how to symbolize JIT
> output
> @@ -10487,7 +10489,7 @@ else
>    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
>    lt_status=$lt_dlunknown
>    cat > conftest.$ac_ext <<EOF
> -#line 10490 "configure"
> +#line 10492 "configure"
>  #include "confdefs.h"
>
>  #if HAVE_DLFCN_H
> @@ -12287,6 +12289,90 @@ fi
>  echo "${ECHO_T}$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS
> $COVERED_SWITCH_DEFAULT $NO_UNINITIALIZED $NO_MAYBE_UNINITIALIZED" >&6; }
>
>
> +# Check whether --with-python was given.
> +if test "${with_python+set}" = set; then
> +  withval=$with_python; PYTHON="$withval"
> +fi
> +
> +
> +if test -n "$PYTHON" && test -x "$PYTHON" ; then
> +  { echo "$as_me:$LINENO: checking for python" >&5
> +echo $ECHO_N "checking for python... $ECHO_C" >&6; }
> +  { echo "$as_me:$LINENO: result: user defined: $with_python" >&5
> +echo "${ECHO_T}user defined: $with_python" >&6; }
> +else
> +  if test -n "$PYTHON" ; then
> +    { echo "$as_me:$LINENO: WARNING: specified python ($PYTHON) is not
> usable, searching path" >&5
> +echo "$as_me: WARNING: specified python ($PYTHON) is not usable,
> searching path" >&2;}
> +  fi
> +
> +  # Extract the first word of "python python2 python26", so it can be a
> program name with args.
> +set dummy python python2 python26; ac_word=$2
> +{ echo "$as_me:$LINENO: checking for $ac_word" >&5
> +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
> +if test "${ac_cv_path_PYTHON+set}" = set; then
> +  echo $ECHO_N "(cached) $ECHO_C" >&6
> +else
> +  case $PYTHON in
> +  [\\/]* | ?:[\\/]*)
> +  ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a
> path.
> +  ;;
> +  *)
> +  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
> +for as_dir in $PATH
> +do
> +  IFS=$as_save_IFS
> +  test -z "$as_dir" && as_dir=.
> +  for ac_exec_ext in '' $ac_executable_extensions; do
> +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p
> "$as_dir/$ac_word$ac_exec_ext"; }; then
> +    ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
> +    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
> +    break 2
> +  fi
> +done
> +done
> +IFS=$as_save_IFS
> +
> +  test -z "$ac_cv_path_PYTHON" && ac_cv_path_PYTHON="{ echo
> "$as_me:$LINENO: result: not found" >&5
> +echo "${ECHO_T}not found" >&6; }
> +                { { echo "$as_me:$LINENO: error: could not find python
> 2.5 or higher" >&5
> +echo "$as_me: error: could not find python 2.5 or higher" >&2;}
> +   { (exit 1); exit 1; }; }"
> +  ;;
> +esac
> +fi
> +PYTHON=$ac_cv_path_PYTHON
> +if test -n "$PYTHON"; then
> +  { echo "$as_me:$LINENO: result: $PYTHON" >&5
> +echo "${ECHO_T}$PYTHON" >&6; }
> +else
> +  { echo "$as_me:$LINENO: result: no" >&5
> +echo "${ECHO_T}no" >&6; }
> +fi
> +
> +
> +fi
> +
> +{ echo "$as_me:$LINENO: checking for python >= 2.5" >&5
> +echo $ECHO_N "checking for python >= 2.5... $ECHO_C" >&6; }
> +ac_python_version=`$PYTHON -c 'import sys; print sys.version.split()[0]'`
> +ac_python_version_major=`echo $ac_python_version | cut -d'.' -f1`
> +ac_python_version_minor=`echo $ac_python_version | cut -d'.' -f2`
> +ac_python_version_patch=`echo $ac_python_version | cut -d'.' -f3`
> +if   test "$ac_python_version_major" -eq "2" \
> +   && test "$ac_python_version_minor" -ge "5" ; then
> +  { echo "$as_me:$LINENO: result: $PYTHON ($ac_python_version)" >&5
> +echo "${ECHO_T}$PYTHON ($ac_python_version)" >&6; }
> +else
> +  { echo "$as_me:$LINENO: result: not found" >&5
> +echo "${ECHO_T}not found" >&6; }
> +  { { echo "$as_me:$LINENO: error: found python $ac_python_version
> ($PYTHON); required >= 2.5
> +See \`config.log' for more details." >&5
> +echo "$as_me: error: found python $ac_python_version ($PYTHON); required
> >= 2.5
> +See \`config.log' for more details." >&2;}
> +   { (exit 1); exit 1; }; }
> +fi
> +
>
>
>  { echo "$as_me:$LINENO: checking for sin in -lm" >&5
> @@ -22391,6 +22477,7 @@ NO_MISSING_FIELD_INITIALIZERS!$NO_MISSIN
>  COVERED_SWITCH_DEFAULT!$COVERED_SWITCH_DEFAULT$ac_delim
>  NO_MAYBE_UNINITIALIZED!$NO_MAYBE_UNINITIALIZED$ac_delim
>  NO_UNINITIALIZED!$NO_UNINITIALIZED$ac_delim
> +PYTHON!$PYTHON$ac_delim
>  USE_UDIS86!$USE_UDIS86$ac_delim
>  USE_OPROFILE!$USE_OPROFILE$ac_delim
>  USE_INTEL_JITEVENTS!$USE_INTEL_JITEVENTS$ac_delim
> @@ -22417,7 +22504,6 @@ ALL_BINDINGS!$ALL_BINDINGS$ac_delim
>  OCAML_LIBDIR!$OCAML_LIBDIR$ac_delim
>
>  ENABLE_VISIBILITY_INLINES_HIDDEN!$ENABLE_VISIBILITY_INLINES_HIDDEN$ac_delim
>  RPATH!$RPATH$ac_delim
> -RDYNAMIC!$RDYNAMIC$ac_delim
>  _ACEOF
>
>    if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97;
> then
> @@ -22459,12 +22545,13 @@ _ACEOF
>  ac_delim='%!_!# '
>  for ac_last_try in false false false false false :; do
>    cat >conf$$subs.sed <<_ACEOF
> +RDYNAMIC!$RDYNAMIC$ac_delim
>  program_prefix!$program_prefix$ac_delim
>  LIBOBJS!$LIBOBJS$ac_delim
>  LTLIBOBJS!$LTLIBOBJS$ac_delim
>  _ACEOF
>
> -  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 3;
> then
> +  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 4;
> then
>      break
>    elif $ac_last_try; then
>      { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130130/3a550752/attachment.html>


More information about the llvm-commits mailing list