[llvm-testresults] buildbot failure in lab.llvm.org on phase1 - sanity

llvmlab-buildmaster at lab.llvm.org llvmlab-buildmaster at lab.llvm.org
Tue Mar 11 03:04:14 PDT 2014


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

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

Buildslave for this Build: macpro1

Build Reason: scheduler
Build Source Stamp: 203554
Blamelist: chapuni,erikjv

BUILD FAILED: failed

sincerely,
 -The Buildbot


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

CHANGES:
Files:
 lib/Transforms/Scalar/GVN.cpp
 test/Transforms/GVN/overflow.ll
On: http://10.1.1.2/svn/llvm-project
For: llvm
At: Tue 11 Mar 2014 02:46:33
Changed By: erikjv
Comments: GVN: merge overflow intrinsics with non-overflow instructions.

When an overflow intrinsic is followed by a non-overflow instruction,
replace the latter with an extract. For example:

  %sadd = tail call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %a, i32 %b)
  %sadd3 = add i32 %a, %b

Here the add statement will be replaced by an extract.

When an overflow intrinsic follows a non-overflow instruction, a clone
of the intrinsic is inserted before the normal instruction, which makes
it the same as the previous case. Subsequent runs of GVN can then clean
up the duplicate instructions and insert the extract.

This fixes PR8817.
Properties: 




File: include/clang/Lex/HeaderSearch.h
On: http://10.1.1.2/svn/llvm-project
For: cfe
At: Tue 11 Mar 2014 02:46:33
Changed By: chapuni
Comments: clang::HeaderSearch: Use default constructor even for POD.

Unfortunately, msvc 2012 didn't accept non-static member initializer.Properties: 




LOGS:






More information about the llvm-testresults mailing list