[llvm-testresults] buildbot failure in smooshlab on clang-x86_64-darwin10-fnt

daniel_dunbar at apple.com daniel_dunbar at apple.com
Wed Apr 7 11:30:45 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/1152

Buildbot URL: http://smooshlab.apple.com:8010/

Buildslave for this Build: smoosh-02

Build Reason: 
Build Source Stamp: 100653
Blamelist: asl,dgregor,lattner

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

CHANGES:
Files:
 include/clang/Basic/DiagnosticSemaKinds.td
 lib/Sema/SemaDeclCXX.cpp
 lib/Sema/SemaTemplateInstantiateDecl.cpp
 test/CXX/class.access/class.friend/p2-cxx03.cpp
 test/CXX/class.access/class.friend/p3-cxx0x.cpp
 test/CXX/class/class.friend/p2.cpp
 test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/p3.cpp
 test/CXX/temp/temp.decls/temp.friend/p3.cpp
 test/Parser/cxx-friend.cpp
At: Wed 07 Apr 2010 11:01:10
Changed By: dgregor
Comments: Improve handling of friend types in several ways:
  - When instantiating a friend type template, perform semantic
  analysis on the resulting type.
  - Downgrade the errors concerning friend type declarations that do
  not refer to classes to ExtWarns in C++98/03. C++0x allows
  practically any type to be befriended, and ignores the friend
  declaration if the type is not a class.

Properties: 




Files:
 lib/CodeGen/MachineInstr.cpp
 test/CodeGen/X86/crash.ll
At: Wed 07 Apr 2010 11:06:06
Changed By: lattner
Comments: fix a latent bug my inline asm stuff exposed: 
MachineOperand::isIdenticalTo wasn't handling metadata operands.
Properties: 




File: test/CodeGen/X86/crash.ll
At: Wed 07 Apr 2010 11:06:06
Changed By: lattner
Comments: this has a pr!
Properties: 




File: lib/CodeGen/AsmPrinter/AsmPrinter.cpp
At: Wed 07 Apr 2010 11:16:25
Changed By: lattner
Comments: add a comment line that got dropped
Properties: 




File: lib/CodeGen/SelectionDAG/DAGCombiner.cpp
At: Wed 07 Apr 2010 11:16:25
Changed By: lattner
Comments: fix 80 col violation, patch by Alastair Lynn
Properties: 




Files:
 include/llvm/Target/TargetMachine.h
 lib/CodeGen/LLVMTargetMachine.cpp
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Add hook to insert late LLVM=>LLVM passes just before iselProperties: 




Files:
 lib/Target/ARM/ARM.h
 lib/Target/ARM/ARMGlobalMerge.cpp
 lib/Target/ARM/ARMTargetMachine.cpp
 lib/Target/ARM/ARMTargetMachine.h
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Some initial version of global mergerProperties: 




File: lib/Target/ARM/ARMGlobalMerge.cpp
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Separate const from non-const stuff during mergeingProperties: 




Files:
 lib/Target/ARM/ARM.td
 lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Some bits of A9 scheduling: VFPProperties: 




Files:
 lib/CodeGen/ExactHazardRecognizer.cpp
 lib/CodeGen/ExactHazardRecognizer.h
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Factor out scoreboard into separate class. This way we might have several different score boards.Properties: 




Files:
 include/llvm/Target/TargetInstrItineraries.h
 include/llvm/Target/TargetSchedule.td
 lib/CodeGen/ExactHazardRecognizer.cpp
 lib/CodeGen/ExactHazardRecognizer.h
 utils/TableGen/SubtargetEmitter.cpp
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Initial support for different kinds of FU reservation.Properties: 




Files:
 include/llvm/Target/TargetSchedule.td
 lib/Target/ARM/ARMSchedule.td
 lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Make use of new reserved/required scheduling stuff: introduce VFP and NEON locks to model domain cross stalls precisly.Properties: 




Files:
 lib/Target/ARM/ARMInstrVFP.td
 lib/Target/ARM/ARMSchedule.td
 lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Add new itin classes for FP16 <-> FP32 conversions and make uise of them for A9.Properties: 




File: lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Proper cycle times for locks, since wbck latency can be larger than fwd latency.Properties: 




File: lib/Target/ARM/ARMInstrVFP.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: FCONST{S,D} behaves the same way as FP unary instructions. This is true for both A8 and A9.Properties: 




Files:
 lib/Target/ARM/ARMInstrVFP.td
 lib/Target/ARM/ARMSchedule.td
 lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Define new itin classes for ARM <-> VFP reg moves to distinguish from NEON ops. Define proper scheduling itinerary for them on A9. A8 TRM does not specify latency for them at all :(Properties: 




File: lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: Some easy NEON scheduling goodness for A9Properties: 




Files:
 lib/Target/ARM/ARMInstrNEON.td
 lib/Target/ARM/ARMSchedule.td
 lib/Target/ARM/ARMScheduleV7.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: VHADD differs from VHSUB at least on A9 - the former reads both operands in the second cycle, while the latter reads second operand in first cycle. Introduce new itin classes to catch this behavior. Whether this is true for A8 as well is WIP.Properties: 




File: lib/Target/ARM/ARMInstrNEON.td
At: Wed 07 Apr 2010 11:21:10
Changed By: asl
Comments: VP{MAX, MIN} are of IIC_VSUBi4D itin class as well.Properties: 




LOGS:
Last 10 lines of 'stdio':
	llvm[4]: Compiling X86TargetInfo.cpp for Debug build
	llvm[4]: Building Debug Archive Library libLLVMX86Info.a
	make[1]: *** [Target/.makeall] Error 2
	make[1]: *** Waiting for unfinished jobs....
	llvm[3]: Compiling CallGraph.cpp for Debug build
	llvm[3]: Compiling FindUsedTypes.cpp for Debug build
	llvm[3]: Compiling CallGraphSCCPass.cpp for Debug build
	llvm[3]: Compiling GlobalsModRef.cpp for Debug build
	llvm[3]: Building Debug Archive Library libLLVMipa.a
	make: *** [all] Error 1




More information about the llvm-testresults mailing list