[llvm-testresults] buildbot failure in smooshlab on clang-x86_64-darwin10-selfhost-rel
daniel_dunbar at apple.com
daniel_dunbar at apple.com
Sat Dec 4 18:03:03 PST 2010
The Buildbot has detected a new failure of clang-x86_64-darwin10-selfhost-rel on smooshlab.
Full details are available at:
http://smooshlab.apple.com:8010/builders/clang-x86_64-darwin10-selfhost-rel/builds/6857
Buildbot URL: http://smooshlab.apple.com:8010/
Buildslave for this Build: smoosh-02
Build Reason:
Build Source Stamp: 120930
Blamelist: lattner
BUILD FAILED: failed test-llvm_1 test-clang_1
sincerely,
-The Buildbot
================================================================================
CHANGES:
Files:
test/CodeGen/X86/2007-10-16-fp80_select.ll
test/CodeGen/X86/const-select.ll
test/CodeGen/X86/select.ll
test/CodeGen/X86/sext-select.ll
test/CodeGen/X86/split-select.ll
test/CodeGen/X86/vec_select.ll
test/CodeGen/X86/widen_select-1.ll
At: Sat 04 Dec 2010 17:16:41
Changed By: lattner
Comments: merge some tests into select.ll and make them more specific.
Properties:
Files:
lib/Target/X86/X86ISelLowering.cpp
test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:26:40
Changed By: lattner
Comments: Improve an integer select optimization in two ways:
1. generalize
(select (x == 0), -1, 0) -> (sign_bit (x - 1))
to:
(select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
2. Handle the identical pattern that happens with !=:
(select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
cmov is often high latency and can't fold immediates or
memory operands. For example for (x == 0) ? -1 : 1, before
we got:
< testb %sil, %sil
< movl $-1, %ecx
< movl $1, %eax
< cmovel %ecx, %eax
now we get:
> cmpb $1, %sil
> sbbl %eax, %eax
> orl $1, %eax
Properties:
File: test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:36:40
Changed By: lattner
Comments: relax this to handle linux defaulting to -static.
Properties:
LOGS:
Last 10 lines of 'stdio':
LLVM :: Transforms/SimplifyCFG/switch_formation.dbg.ll
LLVM :: Transforms/SimplifyCFG/switch_formation.ll
LLVM :: Transforms/SimplifyCFG/switch_thread.ll
Expected Passes : 5066
Expected Failures : 43
Unsupported Tests : 557
Unexpected Failures: 31
make[1]: *** [check-local-lit] Error 1
make: *** [check] Error 2
Last 10 lines of 'fail':
LLVM :: Transforms/SimplifyCFG/2008-12-16-DCECond.ll
LLVM :: Transforms/SimplifyCFG/2009-03-05-Speculative-Hoist-Dbg.ll
LLVM :: Transforms/SimplifyCFG/MagicPointer.ll
LLVM :: Transforms/SimplifyCFG/SpeculativeExec.ll
LLVM :: Transforms/SimplifyCFG/branch_fold_dbg.ll
LLVM :: Transforms/SimplifyCFG/iterative-simplify.ll
LLVM :: Transforms/SimplifyCFG/switch_formation.ll
LLVM :: Transforms/SimplifyCFG/switch_formation.dbg.ll
LLVM :: Transforms/SimplifyCFG/switch_create.ll
LLVM :: Transforms/SimplifyCFG/switch_thread.ll
Last 10 lines of 'xfail':
LLVM :: MC/ARM/neont2-vst-encoding.s
LLVM :: MC/ARM/thumb2.s
LLVM :: MC/ARM/neont2-vld-encoding.s
LLVM :: MC/AsmParser/directive_lsym.s
LLVM :: MC/AsmParser/exprs-invalid.s
LLVM :: Transforms/DeadArgElim/deadexternal.ll
LLVM :: Transforms/GVN/rle-no-phi-translate.ll
LLVM :: Transforms/IndVarSimplify/loop_evaluate_6.ll
LLVM :: Transforms/TailCallElim/nocapture.ll
LLVM :: Transforms/TailDup/2008-06-11-AvoidDupLoopHeader.ll
Last 10 lines of 'unsupported':
LLVM :: LLVMC/C++/together.cpp
LLVM :: LLVMC/C++/dash-x.cpp
LLVM :: LLVMC/C/emit-llvm-opt.c
LLVM :: LLVMC/C/emit-llvm.c
LLVM :: LLVMC/C++/just-compile.cpp
LLVM :: LLVMC/C/opt-test.c
LLVM :: LLVMC/C/sink.c
LLVM :: LLVMC/C/wall.c
LLVM :: LLVMC/ObjC++/hello.mm
LLVM :: LLVMC/ObjC/hello.m
Last 10 lines of 'nancvt.ll':
Stack dump:
0. Program arguments: opt -std-compile-opts
1. Running pass 'CallGraph Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@main'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/CodeGen/X86/Output/nancvt.ll.script: line 15: 92436 Illegal instruction 'opt' '-std-compile-opts' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/CodeGen/X86/nancvt.ll'
92437 Done | 'llc' > '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/CodeGen/X86/Output/nancvt.ll.tmp'
--
********************
Last 10 lines of 'byval.ll':
Stack dump:
0. Program arguments: opt -argpromotion -scalarrepl -S
1. Running pass 'CallGraph Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@f'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ArgumentPromotion/Output/byval.ll.script: line 3: 99205 Illegal instruction 'opt' '-argpromotion' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ArgumentPromotion/byval.ll'
99206 Done | 'not' 'grep' 'load'
--
********************
Last 10 lines of 'basictest.ll':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/Inline/basictest.ll:12:10: error: expected string not found in input
; CHECK: @test1(
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'devirtualize-3.ll':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/Inline/devirtualize-3.ll:4:10: error: expected string not found in input
; CHECK: define i32 @main()
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'devirtualize.ll':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/Inline/devirtualize.ll:17:10: error: expected string not found in input
; CHECK: @foo
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of '2009-02-20-instcombine-sroa.ll':
Stack dump:
0. Program arguments: opt -instcombine -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@_Z3fooRSt6vectorIiSaIiEE'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/InstCombine/Output/2009-02-20-InstCombine-SROA.ll.script: line 3: 1908 Illegal instruction 'opt' '-instcombine' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/InstCombine/2009-02-20-InstCombine-SROA.ll'
1909 Done | 'not' 'grep' ' = alloca'
--
********************
Last 10 lines of 'crash.ll':
14 opt 0x0000000000000003 start + 4294748355
Stack dump:
0. Program arguments: opt -jump-threading -disable-output
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Module Verifier' on function '@test3'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/JumpThreading/Output/crash.ll.script: line 2: 2913 Illegal instruction 'opt' '-jump-threading' '-disable-output' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/JumpThreading/crash.ll'
--
********************
Last 10 lines of '2008-06-05-loadstore-agg.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@foo'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/2008-06-05-loadstore-agg.ll.script: line 3: 4187 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/2008-06-05-loadstore-agg.ll'
4188 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of '2006-12-11-sroa-crash.ll':
15 opt 0x0000000100035774 start + 52
Stack dump:
0. Program arguments: opt -scalarrepl -disable-output
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@_ZN9__gnu_cxx16bitmap_allocatorIwE27_M_deallocate_single_objectEPw'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/2006-12-11-SROA-Crash.ll.script: line 2: 4172 Illegal instruction 'opt' '-scalarrepl' '-disable-output' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/2006-12-11-SROA-Crash.ll'
--
********************
Last 10 lines of '2009-02-02-scalarpromoteoutofrange.ll':
15 opt 0x0000000100035774 start + 52
16 opt 0x0000000000000004 start + 4294748356
Stack dump:
0. Program arguments: opt -scalarrepl -instcombine -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@f'
--
********************
Last 10 lines of '2009-12-11-neontypes.ll':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/2009-12-11-NeonTypes.ll:13:10: error: expected string not found in input
; CHECK: @test
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'arraytest.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -mem2reg -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/arraytest.ll.script: line 3: 4264 Illegal instruction 'opt' '-scalarrepl' '-mem2reg' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/arraytest.ll'
4266 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of 'address-space.ll':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/address-space.ll:9:10: error: expected string not found in input
; CHECK: define void @Test(
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'basictest.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -mem2reg -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/basictest.ll.script: line 3: 4279 Illegal instruction 'opt' '-scalarrepl' '-mem2reg' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/basictest.ll'
4280 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of 'copy-aggregate.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test1'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/copy-aggregate.ll.script: line 3: 4302 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/copy-aggregate.ll'
4303 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of 'debuginfo.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@_ZN6Sphere10ray_sphereERK3Vec'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/debuginfo.ll.script: line 3: 4305 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/debuginfo.ll'
4306 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of 'load-store-aggregate.ll':
15 opt 0x0000000100035774 start + 52
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/load-store-aggregate.ll.script: line 5: 4322 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/load-store-aggregate.ll' > '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/load-store-aggregate.ll.tmp'
--
********************
Last 10 lines of 'memset-aggregate.ll':
14 opt 0x000000010003af02 main + 4658
15 opt 0x0000000100035774 start + 52
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test1'
--
********************
Last 10 lines of 'memset-aggregate-byte-leader.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test1'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/memset-aggregate-byte-leader.ll.script: line 6: 4328 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/memset-aggregate-byte-leader.ll'
4329 Done | 'not' 'grep' 'call void @llvm.memcpy.i32'
--
********************
Last 10 lines of 'union-pointer.ll':
Stack dump:
0. Program arguments: opt -scalarrepl -S
1. Running pass 'Function Pass Manager' on module '<stdin>'.
2. Running pass 'Scalar Replacement of Aggregates' on function '@test2'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/test/Transforms/ScalarRepl/Output/union-pointer.ll.script: line 6: 4386 Illegal instruction 'opt' '-scalarrepl' '-S' < '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/test/Transforms/ScalarRepl/union-pointer.ll'
4387 Done | 'not' 'grep' 'alloca'
--
********************
Last 10 lines of 'stdio':
Clang :: CodeGen/parameter-passing.c
Clang :: CodeGenCXX/DynArrayInit.cpp
Clang :: CodeGenCXX/member-function-pointer-calls.cpp
Clang :: CodeGenCXX/temp-order.cpp
Expected Passes : 2669
Expected Failures : 20
Unexpected Failures: 7
make[1]: *** [all] Error 1
make: *** [test] Error 2
Last 10 lines of 'warnings':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/enum.c:14:13: warning: comparison of unsigned expression < 0 is always false
1 warning generated.
Last 10 lines of 'fail':
Clang :: CodeGen/bitfield-2.c
Clang :: CodeGen/cleanup-stack.c
Clang :: CodeGen/enum.c
Clang :: CodeGen/parameter-passing.c
Clang :: CodeGenCXX/DynArrayInit.cpp
Clang :: CodeGenCXX/member-function-pointer-calls.cpp
Clang :: CodeGenCXX/temp-order.cpp
Last 10 lines of 'xfail':
Clang :: FixIt/fixit-pmem.cpp
Clang :: FixIt/fixit-errors.c
Clang :: FixIt/typo.m
Clang :: Lexer/hexfloat.cpp
Clang :: PCH/changed-files.c
Clang :: PCH/pr4489.c
Clang :: PCH/source-manager-stack.c
Clang :: Parser/cxx-ambig-decl-expr-xfail.cpp
Clang :: SemaCXX/rval-references-xfail.cpp
Clang :: SemaTemplate/instantiate-function-1.mm
Last 10 lines of 'bitfield-2.c':
FileCheck -check-prefix=CHECK-OPT < /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/bitfield-2.c.tmp.opt.ll /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/bitfield-2.c
--
Exit Code: 132
Command Output (stderr):
--
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/bitfield-2.c.script: line 3: 8010 Illegal instruction /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 -emit-llvm -triple x86_64 -O3 -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/bitfield-2.c.tmp.opt.ll /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/bitfield-2.c -fdump-record-layouts 2> /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/bitfield-2.c.tmp.dump.txt
--
********************
Last 10 lines of 'cleanup-stack.c':
0. Program arguments: /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 -triple i386-unknown-unknown -O3 -emit-llvm /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/cleanup-stack.c -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/cleanup-stack.c.tmp
1. <eof> parser at end of file
2. Per-module optimization passes
3. Running pass 'CallGraph Pass Manager' on module '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/cleanup-stack.c'.
4. Running pass 'Scalar Replacement of Aggregates' on function '@f1'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/cleanup-stack.c.script: line 2: 8218 Illegal instruction /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 -triple i386-unknown-unknown -O3 -emit-llvm /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/cleanup-stack.c -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/cleanup-stack.c.tmp
--
********************
Last 10 lines of 'enum.c':
Command Output (stderr):
--
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/enum.c:14:13: warning: comparison of unsigned expression < 0 is always false
if (z - 1 < 0)
~~~~~ ^ ~
1 warning generated.
--
********************
Last 10 lines of 'parameter-passing.c':
Stack dump:
0. Program arguments: /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/parameter-passing.c -triple i386-unknown-unknown -O3 -emit-llvm -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/parameter-passing.c.tmp
1. <eof> parser at end of file
2. Per-function optimization
3. Running pass 'Scalar Replacement of Aggregates' on function '@f0'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/parameter-passing.c.script: line 6: 8598 Illegal instruction /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGen/parameter-passing.c -triple i386-unknown-unknown -O3 -emit-llvm -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGen/Output/parameter-passing.c.tmp
--
********************
Last 10 lines of 'dynarrayinit.cpp':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGenCXX/DynArrayInit.cpp:4:11: error: expected string not found in input
// CHECK: define signext i8 @_Z2f0v
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'member-function-pointer-calls.cpp':
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGenCXX/member-function-pointer-calls.cpp:11:11: error: expected string not found in input
// CHECK: define i32 @_Z2g1v()
^
<stdin>:1:1: note: scanning from here
^
--
********************
Last 10 lines of 'temp-order.cpp':
0. Program arguments: /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 -triple i386-unknown-unknown -O3 -emit-llvm -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGenCXX/Output/temp-order.cpp.tmp /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGenCXX/temp-order.cpp
1. <eof> parser at end of file
2. Per-module optimization passes
3. Running pass 'CallGraph Pass Manager' on module '/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGenCXX/temp-order.cpp'.
4. Running pass 'Scalar Replacement of Aggregates' on function '@_Z2f0b'
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGenCXX/Output/temp-order.cpp.script: line 2: 9742 Illegal instruction /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/Release+Asserts/bin/clang -cc1 -triple i386-unknown-unknown -O3 -emit-llvm -o /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.obj.2/tools/clang/test/CodeGenCXX/Output/temp-order.cpp.tmp /Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-selfhost-rel/llvm.src/tools/clang/test/CodeGenCXX/temp-order.cpp
--
********************
More information about the llvm-testresults
mailing list