[llvm-testresults] buildbot failure in smooshlab on clang-x86_64-darwin10-fnt
daniel_dunbar at apple.com
daniel_dunbar at apple.com
Fri Apr 16 16:57:53 PDT 2010
The Buildbot has detected a new failure of clang-x86_64-darwin10-fnt on smooshlab.
Full details are available at:
http://smooshlab.apple.com:8010/builders/clang-x86_64-darwin10-fnt/builds/1359
Buildbot URL: http://smooshlab.apple.com:8010/
Buildslave for this Build: smoosh-02
Build Reason:
Build Source Stamp: 101567
Blamelist: dgregor,djg,evancheng,johnny,lattner,stuart
BUILD FAILED: failed make.test-suite
sincerely,
-The Buildbot
================================================================================
CHANGES:
File: lib/CodeGen/SelectionDAG/DAGCombiner.cpp
At: Fri 16 Apr 2010 15:31:02
Changed By: evancheng
Comments: (i32 sext_in_reg (i32 aext (i16 x)), i16) -> (i32 sext x). No known test case until -promote-16bit is enabled.Properties:
Files:
lib/Sema/SemaExprCXX.cpp
lib/Sema/SemaOverload.cpp
At: Fri 16 Apr 2010 15:31:02
Changed By: dgregor
Comments: Move Sema::PerformImplicitConversion over to where Sema::TryImplicitConversion is, for my own sanity. No functionality changeProperties:
Files:
gcc/config/darwin.c
gcc/config/darwin.h
gcc/objc/objc-act.c
gcc/testsuite/objc.dg/weak_import_class.m
At: Fri 16 Apr 2010 15:36:02
Changed By: stuart
Comments: Revert 101523; doesn't work in LLVM-GCC. Radar 7874731.Properties:
Files:
include/llvm/CallGraphSCCPass.h
include/llvm/Transforms/IPO/InlinerPass.h
lib/Analysis/IPA/CallGraphSCCPass.cpp
lib/Transforms/IPO/ArgumentPromotion.cpp
lib/Transforms/IPO/FunctionAttrs.cpp
lib/Transforms/IPO/Inliner.cpp
lib/Transforms/IPO/PruneEH.cpp
lib/Transforms/IPO/StructRetPromotion.cpp
tools/opt/opt.cpp
unittests/VMCore/PassManagerTest.cpp
At: Fri 16 Apr 2010 15:46:28
Changed By: lattner
Comments: introduce a new CallGraphSCC class, and pass it around
to CallGraphSCCPass's instead of passing around a
std::vector<CallGraphNode*>. No functionality change,
but now we have a much tidier interface.
Properties:
File: test/MC/Disassembler/neon-tests.txt
At: Fri 16 Apr 2010 15:51:28
Changed By: johnny
Comments: Minor change to make the test case comply with Vd<0> == '0' when Q == '1'.
Properties:
Files:
Makefile.config.in
Makefile.rules
autoconf/configure.ac
autoconf/m4/link_options.m4
At: Fri 16 Apr 2010 16:01:31
Changed By: djg
Comments: Add an autoconf check for -retain-symbols-file and conditionalize
use of that option with it. This eliminates an imprecise "Linux"
test, and should help support old versions of gold.
Properties:
File: configure
At: Fri 16 Apr 2010 16:01:31
Changed By: djg
Comments: Regenerate configure script.
Properties:
Files:
include/llvm/ADT/SCCIterator.h
include/llvm/CallGraphSCCPass.h
lib/Analysis/IPA/CallGraphSCCPass.cpp
At: Fri 16 Apr 2010 16:01:31
Changed By: lattner
Comments: move ReplaceNode out of line, rename scc_iterator::fini -> isAtEnd().
No functionality change.
Properties:
File: lib/Target/ARM/Disassembler/ARMDisassembler.cpp
At: Fri 16 Apr 2010 16:06:28
Changed By: johnny
Comments: Fixed logic error. Should check Builder for validity before calling SetSession
on it.
Properties:
Files:
lib/Target/ARM/ARMSelectionDAGInfo.cpp
lib/Target/ARM/ARMSelectionDAGInfo.h
lib/Target/ARM/CMakeLists.txt
lib/Target/Alpha/AlphaSelectionDAGInfo.cpp
lib/Target/Alpha/AlphaSelectionDAGInfo.h
lib/Target/Alpha/CMakeLists.txt
lib/Target/Blackfin/BlackfinSelectionDAGInfo.cpp
lib/Target/Blackfin/BlackfinSelectionDAGInfo.h
lib/Target/Blackfin/CMakeLists.txt
lib/Target/CellSPU/CMakeLists.txt
lib/Target/CellSPU/CellSPUSelectionDAGInfo.cpp
lib/Target/CellSPU/CellSPUSelectionDAGInfo.h
lib/Target/MBlaze/CMakeLists.txt
lib/Target/MBlaze/MBlazeSelectionDAGInfo.cpp
lib/Target/MBlaze/MBlazeSelectionDAGInfo.h
lib/Target/MSP430/CMakeLists.txt
lib/Target/MSP430/MSP430SelectionDAGInfo.cpp
lib/Target/MSP430/MSP430SelectionDAGInfo.h
lib/Target/Mips/CMakeLists.txt
lib/Target/Mips/MipsSelectionDAGInfo.cpp
lib/Target/Mips/MipsSelectionDAGInfo.h
lib/Target/PIC16/CMakeLists.txt
lib/Target/PIC16/PIC16SelectionDAGInfo.cpp
lib/Target/PIC16/PIC16SelectionDAGInfo.h
lib/Target/PowerPC/CMakeLists.txt
lib/Target/PowerPC/PowerPCSelectionDAGInfo.cpp
lib/Target/PowerPC/PowerPCSelectionDAGInfo.h
lib/Target/Sparc/CMakeLists.txt
lib/Target/Sparc/SparcSelectionDAGInfo.cpp
lib/Target/Sparc/SparcSelectionDAGInfo.h
lib/Target/SystemZ/CMakeLists.txt
lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
lib/Target/SystemZ/SystemZSelectionDAGInfo.h
lib/Target/X86/CMakeLists.txt
lib/Target/X86/X86SelectionDAGInfo.cpp
lib/Target/X86/X86SelectionDAGInfo.h
lib/Target/XCore/CMakeLists.txt
lib/Target/XCore/XCoreSelectionDAGInfo.cpp
lib/Target/XCore/XCoreSelectionDAGInfo.h
At: Fri 16 Apr 2010 16:06:28
Changed By: djg
Comments: Add skeleton target-specific SelectionDAGInfo files.
Properties:
Files:
include/llvm/ADT/SCCIterator.h
lib/Analysis/IPA/CallGraphSCCPass.cpp
At: Fri 16 Apr 2010 16:06:28
Changed By: lattner
Comments: building on the new CallGraphSCC abstraction, teach CallGraphSCCPassManager
to keep the node entries in scc_iterator up to date instead of dangling as
the SCC mutates.
This is a really terrible problem which was causing -g to affect codegen
because it would permute the memory image of the compiler process.
Thanks to Dale for expertly hunting it down.
Properties:
File: docs/WritingAnLLVMPass.html
At: Fri 16 Apr 2010 16:11:28
Changed By: lattner
Comments: update docs for api change.
Properties:
File: include/llvm/Target/TargetMachine.h
At: Fri 16 Apr 2010 16:11:28
Changed By: djg
Comments: Add a getSelectionDAGInfo member to TargetMachine.
Properties:
LOGS:
Last 10 lines of 'stdio':
SingleSource/UnitTests/Vector/SSE/sse.shift | 0.0325 880 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/SSE/sse.stepfft | 0.6917 8432 0.0005 * * | 1.1000 * 0.9000 * * | n/a 1.22 n/a n/a
SingleSource/UnitTests/Vector/build | 0.0220 1072 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/build2 | 0.0938 1520 0.0001 * * | 1.5500 * 2.1500 * * | n/a 0.72 n/a n/a
SingleSource/UnitTests/Vector/divides | 0.0272 720 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/multiplies | 0.1403 2064 0.0002 * * | 0.7400 * 2.0500 * * | n/a 0.36 n/a n/a
SingleSource/UnitTests/Vector/simple | 0.0496 1664 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/sumarray | 0.0325 1072 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/sumarray-dbl | 0.0356 1088 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/printargs | 0.0187 848 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
Last 10 lines of 'report':
SingleSource/UnitTests/Vector/SSE/sse.shift | 0.0325 880 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/SSE/sse.stepfft | 0.6917 8432 0.0005 * * | 1.1000 * 0.9000 * * | n/a 1.22 n/a n/a
SingleSource/UnitTests/Vector/build | 0.0220 1072 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/build2 | 0.0938 1520 0.0001 * * | 1.5500 * 2.1500 * * | n/a 0.72 n/a n/a
SingleSource/UnitTests/Vector/divides | 0.0272 720 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/multiplies | 0.1403 2064 0.0002 * * | 0.7400 * 2.0500 * * | n/a 0.36 n/a n/a
SingleSource/UnitTests/Vector/simple | 0.0496 1664 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/sumarray | 0.0325 1072 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/Vector/sumarray-dbl | 0.0356 1088 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
SingleSource/UnitTests/printargs | 0.0187 848 0.0001 * * | 0.0000 * 0.0000 * * | n/a - n/a n/a
Last 10 lines of 'fail.GCCAS':
GCCAS.MultiSource/Applications/ClamAV/clamscan
GCCAS.MultiSource/Applications/JM/ldecod/ldecod
GCCAS.MultiSource/Applications/SPASS/SPASS
GCCAS.MultiSource/Applications/kimwitu++/kc
GCCAS.MultiSource/Applications/sqlite3/sqlite3
GCCAS.SingleSource/Regression/C++/2003-06-13-Crasher
Last 10 lines of 'fail.Bytecode':
Bytecode.MultiSource/Applications/ClamAV/clamscan
Bytecode.MultiSource/Applications/JM/ldecod/ldecod
Bytecode.MultiSource/Applications/SPASS/SPASS
Bytecode.MultiSource/Applications/kimwitu++/kc
Bytecode.MultiSource/Applications/sqlite3/sqlite3
Bytecode.SingleSource/Regression/C++/2003-06-13-Crasher
Last 10 lines of 'fail.LLC':
LLC.MultiSource/Applications/ClamAV/clamscan
LLC.MultiSource/Applications/JM/ldecod/ldecod
LLC.MultiSource/Applications/SPASS/SPASS
LLC.MultiSource/Applications/kimwitu++/kc
LLC.MultiSource/Applications/sqlite3/sqlite3
LLC.SingleSource/Regression/C++/2003-06-13-Crasher
Last 10 lines of 'fail.LLC_compile':
LLC_compile.MultiSource/Applications/ClamAV/clamscan
LLC_compile.MultiSource/Applications/JM/ldecod/ldecod
LLC_compile.MultiSource/Applications/SPASS/SPASS
LLC_compile.MultiSource/Applications/kimwitu++/kc
LLC_compile.MultiSource/Applications/sqlite3/sqlite3
LLC_compile.SingleSource/Regression/C++/2003-06-13-Crasher
Last 10 lines of 'xfail.LLC':
LLC.SingleSource/Regression/C++/EH/ConditionalExpr
LLC.SingleSource/Regression/C++/EH/ctor_dtor_count-2
LLC.SingleSource/Regression/C++/EH/function_try_block
LLC.SingleSource/UnitTests/2006-12-04-DynAllocAndRestore
LLC.SingleSource/UnitTests/ObjC/dot-syntax
LLC.SingleSource/UnitTests/ObjC/dot-syntax-2
LLC.SingleSource/UnitTests/ObjC/exceptions
Last 10 lines of 'xfail.GCCAS':
GCCAS.SingleSource/UnitTests/2006-12-04-DynAllocAndRestore
Last 10 lines of 'xfail.LLC_compile':
LLC_compile.SingleSource/Regression/C++/EH/ConditionalExpr
LLC_compile.SingleSource/Regression/C++/EH/ctor_dtor_count-2
LLC_compile.SingleSource/Regression/C++/EH/function_try_block
LLC_compile.SingleSource/UnitTests/2006-12-04-DynAllocAndRestore
LLC_compile.SingleSource/UnitTests/ObjC/dot-syntax
LLC_compile.SingleSource/UnitTests/ObjC/dot-syntax-2
LLC_compile.SingleSource/UnitTests/ObjC/exceptions
Last 10 lines of 'xfail.Bytecode':
Bytecode.SingleSource/UnitTests/2006-12-04-DynAllocAndRestore
More information about the llvm-testresults
mailing list