[llvm-testresults] buildbot failure in lab.llvm.org on phase2 - living
llvmlab-buildmaster at lab.llvm.org
llvmlab-buildmaster at lab.llvm.org
Thu May 22 10:17:46 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/7794
Buildbot URL: http://lab.llvm.org:8013/
Buildslave for this Build: macpro1
Build Reason: scheduler
Build Source Stamp: 209448
Blamelist: djasper,dnovillo,kcc,rafael,timurrrr,tnorthover
BUILD FAILED: failed
sincerely,
-The Buildbot
================================================================================
CHANGES:
File: lib/Target/ARM64/ARM64InstrInfo.td
On: smooshlab-project
At: Thu 22 May 2014 05:26:25
Changed By: tnorthover
Comments: Yes they doProperties:
phase_id: r209430-t20140522_060334-b20213
File: lib/Target/ARM64/ARM64InstrInfo.td
On: smooshlab-project
At: Thu 22 May 2014 05:26:25
Changed By: tnorthover
Comments: ARM64: these work tooProperties:
phase_id: r209430-t20140522_060334-b20213
Files:
lib/Format/UnwrappedLineParser.cpp
unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Thu 22 May 2014 05:56:06
Changed By: djasper
Comments: clang-format: Fix braced list detection.
Before:
static_assert(std::is_integral<int> {} + 0, "");
int a = std::is_integral<int> {}
+ 0;
After:
static_assert(std::is_integral<int>{} + 0, "");
int a = std::is_integral<int>{} + 0;Properties:
phase_id: r209435-t20140522_061507-b20214
Files:
lib/Driver/ToolChains.h
test/Driver/stack-protector.c
On: smooshlab-project
At: Thu 22 May 2014 06:00:05
Changed By: rafael
Comments: Use stack protector strong by default on OpenBSD.
Use stack protector strong by default to match the base OS and ports/packages
compiler policy.
Patch by Brad Smith.Properties:
phase_id: r209435-t20140522_061507-b20214
File: lib/Driver/ToolChains.cpp
On: smooshlab-project
At: Thu 22 May 2014 06:06:25
Changed By: tnorthover
Comments: TMPProperties:
phase_id: r209435-t20140522_061507-b20214
Files:
lib/Driver/Tools.cpp
test/Driver/macho-embedded.c
On: smooshlab-project
At: Thu 22 May 2014 06:06:25
Changed By: tnorthover
Comments: MachO: perform ARM ABI detection even for non-Darwin triples.
When "-arch armv7m" is specified, we want "aapcs", for example.
rdar://problem/16581138Properties:
phase_id: r209435-t20140522_061507-b20214
File: lib/Driver/ToolChains.cpp
On: smooshlab-project
At: Thu 22 May 2014 06:06:25
Changed By: tnorthover
Comments: Revert "TMP"
This reverts r209433. Sorry about that, it needs a test & better message.Properties:
phase_id: r209435-t20140522_061507-b20214
Files:
lib/Target/ARM/ARMFrameLowering.cpp
lib/Target/X86/X86FrameLowering.cpp
test/CodeGen/ARM/segmented-stacks.ll
test/CodeGen/Thumb/segmented-stacks.ll
test/CodeGen/X86/segmented-stacks.ll
On: smooshlab-project
At: Thu 22 May 2014 06:16:08
Changed By: tnorthover
Comments: Segmented stacks: omit __morestack call when there's no frame.
Patch by Florian ZeitzProperties:
phase_id: r209436-t20140522_062650-b20215
File: lib/Driver/ToolChains.cpp
On: smooshlab-project
At: Thu 22 May 2014 06:23:29
Changed By: tnorthover
Comments: MachO: look for nearby tools on all MachO platforms.
This brings "-arch armv7m" (etc) behaviour more in line with what's expected
for developers on OS X, and allows Clang to find an "ld" (for example) in the
same directory instead of using the default /usr/bin/ld.
Unfortunately no test because it relies on the specific place Clang is running
from.
rdar://problem/16427320Properties:
phase_id: r209437-t20140522_063804-b20216
Files:
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Thu 22 May 2014 06:36:06
Changed By: djasper
Comments: clang-format: Fix corner case in AllowShortBlocksOnASingleLine.
Before:
template <int> struct A4 { A4() { }
};
After:
template <int i> struct A4 {
A4() {}
};
This fixes llvm.org/PR19813 (at least the part that isn't working as
intended).Properties:
phase_id: r209438-t20140522_064917-b20217
Files:
test/asan/TestCases/Windows/dll_operator_array_new_left_oob.cc
test/asan/TestCases/Windows/dll_operator_array_new_with_dtor_left_oob.cc
test/asan/TestCases/Windows/operator_array_new_left_oob.cc
test/asan/TestCases/Windows/operator_array_new_with_dtor_left_oob.cc
On: smooshlab-project
At: Thu 22 May 2014 06:40:06
Changed By: timurrrr
Comments: [ASan/Win] Add more tests for operator new[]Properties:
phase_id: r209439-t20140522_070125-b20218
Files:
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Thu 22 May 2014 07:06:08
Changed By: djasper
Comments: clang-format: Don't use Allman brace breaking for ObjC blocks.
It just seems wrong. This fixes llvm.org/PR19736.Properties:
phase_id: r209441-t20140522_071430-b20219
Files:
lib/asan/asan_dll_thunk.cc
test/asan/TestCases/Windows/dll_intercept_memcpy.cc
test/asan/TestCases/Windows/intercept_memcpy.cc
On: smooshlab-project
At: Thu 22 May 2014 07:06:09
Changed By: timurrrr
Comments: [ASan/Win] Thread more library functions from the DLL thunk to the main moduleProperties:
phase_id: r209441-t20140522_071430-b20219
Files:
include/llvm/IR/DiagnosticInfo.h
include/llvm/IR/LLVMContext.h
lib/IR/DiagnosticInfo.cpp
lib/IR/LLVMContext.cpp
lib/IR/LLVMContextImpl.cpp
lib/IR/LLVMContextImpl.h
lib/Transforms/IPO/Inliner.cpp
lib/Transforms/Scalar/TailRecursionElimination.cpp
lib/Transforms/Utils/LoopUnroll.cpp
lib/Transforms/Utils/SimplifyLibCalls.cpp
lib/Transforms/Vectorize/LoopVectorize.cpp
test/Transforms/Inline/optimization-remarks.ll
On: smooshlab-project
At: Thu 22 May 2014 07:30:06
Changed By: dnovillo
Comments: Add support for missed and analysis optimization remarks.
Summary:
This adds two new diagnostics: -pass-remarks-missed and
-pass-remarks-analysis. They take the same values as -pass-remarks but
are intended to be triggered in different contexts.
-pass-remarks-missed is used by LLVMContext::emitOptimizationRemarkMissed,
which passes call when they tried to apply a transformation but
couldn't.
-pass-remarks-analysis is used by LLVMContext::emitOptimizationRemarkAnalysis,
which passes call when they want to inform the user about analysis
results.
The patch also:
1- Adds support in the inliner for the two new remarks and a
test case.
2- Moves emitOptimizationRemark* functions to the llvm namespace.
3- Adds an LLVMContext argument instead of making them member functions
of LLVMContext.
Reviewers: qcolombet
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D3682Properties:
phase_id: r209443-t20140522_073209-b20220
File: lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp
On: smooshlab-project
At: Thu 22 May 2014 07:30:06
Changed By: tnorthover
Comments: ARM64: remove '#' from annotation of add/sub immediate
The full string used to be "// =#12" for example, which looks too
busy.Properties:
phase_id: r209443-t20140522_073209-b20220
Files:
lib/asan/asan_dll_thunk.cc
lib/asan/asan_interceptors.cc
test/asan/TestCases/Windows/dll_host.cc
On: smooshlab-project
At: Thu 22 May 2014 08:01:20
Changed By: timurrrr
Comments: [ASan/Win] Make sure the list of wrappers exported by the main module and imported by the DLL thunk always matchesProperties:
phase_id: r209445-t20140522_080337-b20221
File: lib/asan/tests/asan_test.cc
On: smooshlab-project
At: Thu 22 May 2014 08:01:22
Changed By: kcc
Comments: [asan] relax the test for long doubleProperties:
phase_id: r209445-t20140522_080337-b20221
Files:
include/clang/Format/Format.h
lib/Format/Format.cpp
tools/clang-format/ClangFormat.cpp
On: smooshlab-project
At: Thu 22 May 2014 08:20:05
Changed By: djasper
Comments: clang-format: Introduce DisableFormat that prevents formatting.
And "none" pseudo-style indicating that formatting should be not
applied.
(1) Using .clang-format with "DisableFormat: true" effectively prevents
formatting for all files within the folder containing such .clang-format
file.
(2) Using -fallback-style=none together with -style=file prevents
formatting when .clang-format is not found, which can be used in on-save
callback.
Patch by Adam Strzelecki. Thank you!Properties:
phase_id: r209446-t20140522_082207-b20222
File: test/Format/disable-format.cpp
On: smooshlab-project
At: Thu 22 May 2014 08:26:09
Changed By: djasper
Comments: clang-format: Add basic test for -style=none.Properties:
phase_id: r209448-t20140522_083355-b20223
File: test/asan/TestCases/Windows/dll_host.cc
On: smooshlab-project
At: Thu 22 May 2014 08:26:10
Changed By: timurrrr
Comments: Quick-fix a copy-and-paste mistake in one of the ASan testProperties:
phase_id: r209448-t20140522_083355-b20223
LOGS:
More information about the llvm-testresults
mailing list