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

llvmlab-buildmaster at lab.llvm.org llvmlab-buildmaster at lab.llvm.org
Tue Jul 29 19:30:09 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/614

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

Buildslave for this Build: macpro1

Build Reason: scheduler
Build Source Stamp: 214276
Blamelist: anemet,arsenm,dexonsmith,lvoufo,majnemer,petarj,rafael,rsmith,samsonov

BUILD FAILED: failed

sincerely,
 -The Buildbot


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

CHANGES:
File: lib/ubsan/ubsan_flags.cc
On: smooshlab-project
At: Tue 29 Jul 2014 17:15:42
Changed By: samsonov
Comments: [UBSan] Allow to override runtime flags defaults by providing
compile definition UBSAN_DEFAULT_OPTIONS when building the runtime.
This mirrors similar ASan functionality.
Properties: 
  phase_id: r214260-t20140729_172450-b2907



File: include/llvm/IR/UseListOrder.h
On: smooshlab-project
At: Tue 29 Jul 2014 17:15:42
Changed By: dexonsmith
Comments: UseListOrder: Remove move assignment

Remove the move assignment added in r214213, since it wasn't necessary
to fix the bots (r214224 was the magic touch).Properties: 
  phase_id: r214260-t20140729_172450-b2907



Files:
 include/llvm/Analysis/RegionInfoImpl.h
 lib/CodeGen/MachineRegionInfo.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 17:35:39
Changed By: rsmith
Comments: Header hygiene: remove using directive and #undef DEBUG_TYPE once we're done.
Properties: 
  phase_id: r214264-t20140729_173742-b2908



File: include/llvm/IR/UseListOrder.h
On: smooshlab-project
At: Tue 29 Jul 2014 17:35:39
Changed By: dexonsmith
Comments: Revert "UseListOrder: Remove move assignment"

This reverts commit r214260.  Turns out move assignment *is* necessary
for MSVC [1].

[1]: http://bb.pgr.jp/builders/ninja-clang-i686-msc17-R/builds/9631Properties: 
  phase_id: r214264-t20140729_173742-b2908



File: tools/gold/gold-plugin.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 17:51:38
Changed By: rafael
Comments: Use function pointers with just f(1,2) instead of (*f)(1,2).Properties: 
  phase_id: r214265-t20140729_175339-b2909



Files:
 lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
 test/CodeGen/Mips/ctlz-v.ll
On: smooshlab-project
At: Tue 29 Jul 2014 17:55:38
Changed By: petarj
Comments: Add support for scalarizing ctlz_zero_undef

Fix the missing case in ScalarizeVectorResult() that was exposed with
libclcore.bc in Android.

Differential Revision: http://reviews.llvm.org/D4645
Properties: 
  phase_id: r214266-t20140729_180336-b2910



Files:
 lib/Sema/SemaExpr.cpp
 test/SemaCXX/PR10177.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:01:38
Changed By: lvoufo
Comments: Not all instantiated variable is odr-used. Do not mark non-odr-used variable template specializations as such.Properties: 
  phase_id: r214267-t20140729_181409-b2911



File: lib/Target/R600/SIInstrInfo.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:11:39
Changed By: arsenm
Comments: R600/SI: Consider adjacent offsets in getLdStBaseRegImmOfs

We can treat ds_read2_* as a single offset if the offsets are adjacent.

No test since emission of read2 instructions for partially
aligned loads isn't implemented yet.Properties: 
  phase_id: r214269-t20140729_182452-b2912



File: lib/Bitcode/Writer/ValueEnumerator.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:31:38
Changed By: dexonsmith
Comments: UseListOrder: Fix undefined behaviour

This commit fixes undefined behaviour that caused the revert in r214249.

The problem was two unsequenced operations on a `DenseMap<>`, giving
different behaviour in GCC and Clang.  This:

    DenseMap<T*, unsigned> DM;
    for (auto &X : ...)
      DM[&X] = DM.size() + 1;

should have been:

    DenseMap<T*, unsigned> DM;
    for (auto &X : ...) {
      unsigned Size = DM.size();
      DM[&X] = Size + 1;
    }

Until r214242, this difference between compilers didn't matter.  In
r214242, `OrderMap::LastGlobalValueID` was introduced and compared
against IDs, which in GCC were off-by-one my expectations.Properties: 
  phase_id: r214270-t20140729_183520-b2913



Files:
 lib/Bitcode/Writer/ValueEnumerator.cpp
 test/Bitcode/local-linkage-default-visibility.3.4.ll
 test/Bitcode/old-aliases.ll
 test/Bitcode/use-list-order.ll
On: smooshlab-project
At: Tue 29 Jul 2014 18:35:38
Changed By: dexonsmith
Comments: Reapply "UseListOrder: Order GlobalValue uses after initializers"

This reverts commit r214249, reapplying r214242 and r214243, now that
r214270 has fixed the UB.Properties: 
  phase_id: r214275-t20140729_184508-b2914



File: tools/gold/gold-plugin.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:35:39
Changed By: rafael
Comments: Don't duplicate the function name in a comment.Properties: 
  phase_id: r214275-t20140729_184508-b2914



File: test/CodeGen/X86/avx512-vbroadcast.ll
On: smooshlab-project
At: Tue 29 Jul 2014 18:41:42
Changed By: anemet
Comments: [AVX512] Add missing CHECK-LABELProperties: 
  phase_id: r214275-t20140729_184508-b2914



Files:
 include/clang/AST/ASTContext.h
 lib/AST/ASTContext.cpp
 lib/AST/RecordLayoutBuilder.cpp
 lib/CodeGen/CGAtomic.cpp
 lib/CodeGen/CGDebugInfo.cpp
 lib/Sema/SemaDeclObjC.cpp
 test/Layout/ms-x86-pack-and-align.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:41:42
Changed By: majnemer
Comments: MS ABI: Consider alignment attributes on typedefs for layout

The MS ABI has a notion of 'required alignment' for fields; this
alignment supercedes pragma pack directives.

MSVC takes into account alignment attributes on typedefs when
determining whether or not a field has a certain required alignment.

Do the same in clang by tracking whether or not we saw such an attribute
when calculating the type's bitwidth and alignment.

This fixes PR20418.

Reviewers: rnk

Differential Revision: http://reviews.llvm.org/D4714Properties: 
  phase_id: r214275-t20140729_184508-b2914



File: test/CodeGen/X86/avx512-vbroadcast.ll
On: smooshlab-project
At: Tue 29 Jul 2014 18:41:42
Changed By: anemet
Comments: [AVX512] Test that _mm512_set1_* intrinsics generate broadcastsProperties: 
  phase_id: r214275-t20140729_184508-b2914



File: tools/gold/gold-plugin.cpp
On: smooshlab-project
At: Tue 29 Jul 2014 18:51:38
Changed By: rafael
Comments: Convert a few more function pointer calls to just "f()".Properties: 
  phase_id: r214276-t20140729_190359-b2915



LOGS:






More information about the llvm-testresults mailing list