[llvm-testresults] buildbot failure in lab.llvm.org on phase2 - living

llvmlab-buildmaster at lab.llvm.org llvmlab-buildmaster at lab.llvm.org
Thu May 15 01:34:21 PDT 2014


The Buildbot has detected a new failure on builder phase2 - living while building lab.llvm.org.
Full details are available at:
 http://lab.llvm.org:8013/builders/phase2%20-%20living/builds/7710

Buildbot URL: http://lab.llvm.org:8013/

Buildslave for this Build: macpro1

Build Reason: scheduler
Build Source Stamp: 208850
Blamelist: akirtzidis,alp,atanasyan,dinesh,jroelofs,majnemer,rsmith

BUILD FAILED: failed

sincerely,
 -The Buildbot


================================================================================

CHANGES:
Files:
 README.txt
 SDKs/darwin/usr/include/stdio.h
 SDKs/darwin/usr/include/string.h
 SDKs/darwin/usr/include/sys/fcntl.h
 lib/asan/asan_interface_internal.h
 lib/asan/asan_internal.h
 lib/asan/asan_rtl.cc
 lib/asan/asan_thread.cc
 lib/builtins/adddf3.c
 lib/builtins/addsf3.c
 lib/builtins/arm/comparesf2.S
 lib/builtins/comparedf2.c
 lib/builtins/comparesf2.c
 lib/builtins/comparetf2.c
 lib/builtins/divdf3.c
 lib/builtins/ppc/fixtfdi.c
 lib/profile/InstrProfilingPlatformOther.c
 lib/sanitizer_common/sanitizer_addrhashmap.h
 lib/sanitizer_common/sanitizer_tls_get_addr.h
 lib/sanitizer_common/scripts/cpplint.py
 lib/tsan/rtl/tsan_flags.h
 lib/tsan/rtl/tsan_interface_atomic.cc
 lib/tsan/tests/rtl/tsan_test_util.h
 make/platform/clang_darwin.mk
 make/platform/clang_macho_embedded.mk
 make/platform/darwin_fat.mk
 test/asan/TestCases/Darwin/interface_symbols_darwin.c
 test/asan/TestCases/Linux/interface_symbols_linux.c
 test/asan/TestCases/Linux/malloc-in-qsort.cc
 test/asan/TestCases/Linux/overflow-in-qsort.cc
 test/profile/instrprof-write-file-only.c
 test/tsan/allocator_returns_null.cc
On: smooshlab-project
At: Wed 14 May 2014 19:32:00
Changed By: alp
Comments: Fix typosProperties: 
  phase_id: r208841-t20140514_193400-b19893



File: lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
On: smooshlab-project
At: Wed 14 May 2014 19:36:00
Changed By: jroelofs
Comments: Fix some dyslexia in an assert messageProperties: 
  phase_id: r208842-t20140514_194649-b19894



Files:
 include/clang/Parse/Parser.h
 lib/Parse/ParseExpr.cpp
 lib/Parse/ParseExprCXX.cpp
 test/Parser/cxx-casting.cpp
On: smooshlab-project
At: Wed 14 May 2014 19:56:00
Changed By: rsmith
Comments: PR19748: Make sure we don't lose colon protection after the parenthesized type-id in a cast-expression.
Properties: 
  phase_id: r208843-t20140514_195824-b19895



Files:
 lib/Parse/ParseExprCXX.cpp
 test/Parser/compound_literal.c
On: smooshlab-project
At: Wed 14 May 2014 20:02:00
Changed By: rsmith
Comments: Replace completely bogus ambiguous-compound-literal-in-C++ code with something
that isn't always wrong.
Properties: 
  phase_id: r208844-t20140514_201042-b19896



Files:
 include/clang-c/Index.h
 test/Index/annotate-module.m
 tools/c-index-test/c-index-test.c
 tools/libclang/CIndex.cpp
 tools/libclang/libclang.exports
On: smooshlab-project
At: Wed 14 May 2014 21:56:00
Changed By: akirtzidis
Comments: [libclang] Introduce clang_Module_isSystem(), which returns non-zero if the given CXModule is a system one.Properties: 
  phase_id: r208846-t20140514_215801-b19897



Files:
 MultiSource/Benchmarks/mafft/Makefile
 SingleSource/Benchmarks/CoyoteBench/Makefile
On: smooshlab-project
At: Wed 14 May 2014 22:06:00
Changed By: atanasyan
Comments: [Mips] Extentd RUNTIMELIMIT for a couple tests when they are running for
MIPS target.Properties: 
  phase_id: r208847-t20140514_221031-b19898



Files:
 lib/Transforms/InstCombine/InstCombineSelect.cpp
 test/Transforms/InstCombine/select.ll
On: smooshlab-project
At: Wed 14 May 2014 23:12:00
Changed By: dinesh
Comments: Added inst combine transforms for single bit tests from Chris's note

if ((x & C) == 0) x |= C becomes x |= C
if ((x & C) != 0) x ^= C becomes x &= ~C
if ((x & C) == 0) x ^= C becomes x |= C
if ((x & C) != 0) x &= ~C becomes x &= ~C
if ((x & C) == 0) x &= ~C becomes nothing

Z3 Verifications code for above transform
http://rise4fun.com/Z3/Pmsh

Differential Revision: http://reviews.llvm.org/D3717

Properties: 
  phase_id: r208848-t20140514_231400-b19899



Files:
 lib/Transforms/InstCombine/InstCombineSelect.cpp
 test/Transforms/InstCombine/select.ll
On: smooshlab-project
At: Wed 14 May 2014 23:26:00
Changed By: dinesh
Comments: Added instcombine for 'MIN(MIN(A, 27), 93)' and 'MAX(MAX(A, 93), 27)'

MIN(MIN(A, 23), 97) -> MIN(A, 23)
MAX(MAX(A, 97), 23) -> MAX(A, 97)

Differential Revision: http://reviews.llvm.org/D3629

Properties: 
  phase_id: r208849-t20140514_232800-b19900



File: lib/AST/ASTContext.cpp
On: smooshlab-project
At: Wed 14 May 2014 23:36:00
Changed By: majnemer
Comments: AST: Remove dead-code/update reference to standard

GetGVALinkageForFunction handles TSK_ExplicitInstantiationDeclaration
twice, remove the redundant code trying to handle it again.

While we are here, update the reference we make to the standard.  It
seems like another paragraph was added causing this text to get
renumbered.Properties: 
  phase_id: r208850-t20140514_233940-b19901



LOGS:






More information about the llvm-testresults mailing list