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

llvmlab-buildmaster at lab.llvm.org llvmlab-buildmaster at lab.llvm.org
Tue Jun 17 00:34:36 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/209

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

Buildslave for this Build: macpro1

Build Reason: scheduler
Build Source Stamp: 211089
Blamelist: abataev,brad,bwilson,dexonsmith,eliben,gclayton,hans,jingyue,jrose,kuba.brecka,rafael,ributzka,zturner

BUILD FAILED: failed

sincerely,
 -The Buildbot


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

CHANGES:
File: source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 16:06:37
Changed By: gclayton
Comments: Correctly classify code sections as code sections by using the S_ATTR_PURE_INSTRUCTIONS and S_ATTR_SOME_INSTRUCTIONS section flags.

Also correctly set the symbol type of symbols for S_REGULAR and other section types.

<rdar://problem/16896734>

Properties: 
  phase_id: r211074-t20140616_165218-b949



File: tools/debugserver/source/MacOSX/CMakeLists.txt
On: smooshlab-project
At: Mon 16 Jun 2014 16:06:37
Changed By: kuba.brecka
Comments: Don't hardcode path to codesign_allocate.

Building OS X debugserver assumes you have an Xcode installation at /Application/Xcode.app. Let's instead detect where Xcode is using xcrun.

See http://reviews.llvm.org/D4152



Properties: 
  phase_id: r211074-t20140616_165218-b949



Files:
 lib/Driver/ToolChains.h
 test/Driver/openbsd.c
On: smooshlab-project
At: Mon 16 Jun 2014 16:16:37
Changed By: brad
Comments: Use the integrated assembler by default on OpenBSD/powerpc.
Properties: 
  phase_id: r211075-t20140616_170156-b950



Files:
 lib/Transforms/Scalar/LoopUnrollPass.cpp
 test/Transforms/LoopUnroll/unroll-pragmas.ll
On: smooshlab-project
At: Mon 16 Jun 2014 17:06:38
Changed By: eliben
Comments: Teach LoopUnrollPass to respect loop unrolling hints in metadata.

[This is resubmitting r210721, which was reverted due to suspected breakage
which turned out to be unrelated].

Some extra review comments were addressed. See D4090 and D4147 for more details.

The Clang change that produces this metadata was committed in r210667

Patch by Mark Heffernan.

Properties: 
  phase_id: r211076-t20140616_171108-b951



Files:
 lib/Target/X86/X86FastISel.cpp
 lib/Target/X86/X86InstrInfo.cpp
 lib/Target/X86/X86InstrInfo.h
 test/CodeGen/X86/fast-isel-cmp-branch2.ll
 test/CodeGen/X86/fast-isel-cmp.ll
On: smooshlab-project
At: Mon 16 Jun 2014 17:10:37
Changed By: ributzka
Comments: [FastISel][X86] Refactor the code to get the X86 condition from a helper function. NFC.

Make use of helper functions to simplify the branch and compare instruction
selection in FastISel. Also add test cases for compare and conditonal branch.Properties: 
  phase_id: r211078-t20140616_172048-b952



Files:
 include/clang/Sema/Scope.h
 lib/Parse/ParseDecl.cpp
 lib/Sema/Scope.cpp
 test/CodeGenCXX/microsoft-abi-static-initializers.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 17:10:37
Changed By: hans
Comments: MS static locals mangling: don't count enum scopes

We may not have the mangling for static locals vs. enums completely figured out,
but at least for my simple test cases, enums should not increment the mangling
number.

Differential Revision: http://reviews.llvm.org/D4164Properties: 
  phase_id: r211078-t20140616_172048-b952



Files:
 lib/Parse/ParseStmt.cpp
 test/CodeGenCXX/microsoft-abi-static-initializers.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 17:20:37
Changed By: hans
Comments: MS static locals mangling: don't double-increment mangling number for switches

Differential Revision: http://reviews.llvm.org/D4165Properties: 
  phase_id: r211079-t20140616_173250-b953



Files:
 include/llvm/IR/ValueMap.h
 unittests/IR/ValueMapTest.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 17:30:37
Changed By: zturner
Comments: Expose ValueMap's mutex type as a typedef instead of a sys::Mutex.

This enables static polymorphism of the mutex type, which is
necessary in order to replace the standard mutex implementation
with a different type.Properties: 
  phase_id: r211082-t20140616_174324-b954



Files:
 include/clang/Driver/CLCompatOptions.td
 lib/Driver/Driver.cpp
 test/Driver/cl-outputs.c
On: smooshlab-project
At: Mon 16 Jun 2014 17:30:37
Changed By: hans
Comments: Add support for the /Fi argument to clang-cl (PR20036)

Patch by Ehsan Akhgari!

Differential Revision: http://reviews.llvm.org/D4143Properties: 
  phase_id: r211082-t20140616_174324-b954



Files:
 lib/Transforms/Scalar/SROA.cpp
 test/Transforms/SROA/slice-order-independence.ll
 test/Transforms/SROA/slice-width.ll
On: smooshlab-project
At: Mon 16 Jun 2014 17:30:37
Changed By: dexonsmith
Comments: SROA: Only split loads on byte boundaries

r199771 accidently broke the logic that makes sure that SROA only splits
load on byte boundaries.  If such a split happens, some bits get lost
when reassembling loads of wider types, causing data corruption.

Move the width check up to reject such splits early, avoiding the
corruption.  Fixes PR19250.

Patch by: Björn Steinbrink <bsteinbr at gmail.com>Properties: 
  phase_id: r211082-t20140616_174324-b954



File: unittests/IR/ValueMapTest.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 17:50:37
Changed By: zturner
Comments: Fix build breakage caused by change to ValueMapTest.Properties: 
  phase_id: r211083-t20140616_175238-b955



Files:
 lib/Transforms/InstCombine/InstCombine.h
 lib/Transforms/InstCombine/InstCombineAddSub.cpp
 test/Transforms/InstCombine/AddOverFlow.ll
 test/Transforms/InstCombine/add-sitofp.ll
 test/Transforms/InstCombine/ffs-1.ll
 test/Transforms/InstCombine/select.ll
On: smooshlab-project
At: Mon 16 Jun 2014 17:56:37
Changed By: jingyue
Comments: [InstCombine] mark ADD with nuw if no unsigned overflow

Summary:
As a starting step, we only use one simple heuristic: if the sign bits
of both a and b are zero, we can prove "add a, b" do not unsigned
overflow, and thus convert it to "add nuw a, b".

Updated all affected tests and added two new tests (@zero_sign_bit and
@zero_sign_bit2) in AddOverflow.ll

Test Plan: make check-all

Reviewers: eliben, rafael, meheff, chandlerc

Reviewed By: chandlerc

Subscribers: chandlerc, llvm-commits

Differential Revision: http://reviews.llvm.org/D4144Properties: 
  phase_id: r211085-t20140616_182727-b956



File: docs/UsersManual.rst
On: smooshlab-project
At: Mon 16 Jun 2014 17:56:37
Changed By: bwilson
Comments: Add documentation for PGO with instrumentation to clang's User's Manual.

<rdar://problem/16771671>Properties: 
  phase_id: r211085-t20140616_182727-b956



Files:
 include/llvm/Support/SourceMgr.h
 lib/Support/SourceMgr.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 19:26:37
Changed By: jrose
Comments: Modernize doc comments for SourceMgr.

No functionality change.Properties: 
  phase_id: r211087-t20140616_192838-b957



Files:
 include/llvm/Support/SourceMgr.h
 lib/Support/SourceMgr.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 19:26:37
Changed By: jrose
Comments: Add an overload for SourceMgr::PrintMessage that takes an existing diagnostic.Properties: 
  phase_id: r211087-t20140616_192838-b957



Files:
 include/clang/AST/DataRecursiveASTVisitor.h
 include/clang/AST/RecursiveASTVisitor.h
On: smooshlab-project
At: Mon 16 Jun 2014 19:46:38
Changed By: abataev
Comments: [OPENMP] Renamed 'DataRecursiveASTVisitor' to just 'RecursiveASTVisitor' for 'reduction' clause and small reformatting after Alp Toker's review.
Properties: 
  phase_id: r211088-t20140616_195103-b958



File: lib/Bitcode/Writer/ValueEnumerator.cpp
On: smooshlab-project
At: Mon 16 Jun 2014 20:10:38
Changed By: rafael
Comments: Convert a few loops to use ranges.Properties: 
  phase_id: r211089-t20140616_201238-b959



LOGS:






More information about the llvm-testresults mailing list