- May 28, 2014
-
-
Joerg Sonnenberger authored
it is set. llvm-svn: 209742
-
Joerg Sonnenberger authored
Patch from: GuanHong Liu Differential Revision: http://reviews.llvm.org/D3886 llvm-svn: 209741
-
Joerg Sonnenberger authored
Differential Revision: http://reviews.llvm.org/D3885 llvm-svn: 209740
-
Ed Maste authored
llvm-svn: 209739
-
Dario Domizioli authored
llvm-svn: 209738
-
Ed Maste authored
llvm-svn: 209737
-
Evgeniy Stepanov authored
This makes check-asan pass on Android, which should help prevent future regressions. https://code.google.com/p/address-sanitizer/issues/detail?id=316 llvm-svn: 209736
-
Evgeniy Stepanov authored
-lpthread does not work on Android. llvm-svn: 209735
-
Evgeniy Stepanov authored
llvm-svn: 209734
-
Timur Iskhodzhanov authored
Some features are not supported yet and some are not planned to be fixed soon llvm-svn: 209733
-
Evgeniy Stepanov authored
There is no libpthread.so, and pthread interface is implemented in libc.so. This mirrors gcc behavior. llvm-svn: 209731
-
Alp Toker authored
llvm-svn: 209730
-
Alp Toker authored
It's still XFAIL, but slightly closer to passing. llvm-svn: 209729
-
Alp Toker authored
These note diags have the same message and can be unified further but for now let's just bring them together. Incidental change: Display a source range in the final attr diagnostic. llvm-svn: 209728
-
Nikola Smiljanic authored
llvm-svn: 209727
-
NAKAMURA Takumi authored
llvm-svn: 209726
-
Daniel Jasper authored
Before (with just the right line length: switch (a) { case some_namespace::some_constant : return; } After: switch (a) { case some_namespace:: some_constant: return; } llvm-svn: 209725
-
Evgeniy Stepanov authored
llvm-svn: 209724
-
Nick Lewycky authored
Add 'nonnull' parameter or return attribute when producing an llvm pointer type in a function type where the C++ type is a reference. Update the tests. llvm-svn: 209723
-
Timur Iskhodzhanov authored
llvm-svn: 209722
-
Evgeniy Stepanov authored
llvm-svn: 209721
-
Daniel Jasper authored
Especially, reduce the amount of indentation if it doesn't increase readability. Before: NSMutableDictionary* dictionary = [NSMutableDictionary dictionaryWithDictionary:@{ aaaaaaaaaaaaaaaaaaaaa : aaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbb : bbbbb, cccccccccccccccc : ccccccccccccccc }]; After: NSMutableDictionary* dictionary = [NSMutableDictionary dictionaryWithDictionary:@{ aaaaaaaaaaaaaaaaaaaaa : aaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbb : bbbbb, cccccccccccccccc : ccccccccccccccc }]; llvm-svn: 209720
-
Timur Iskhodzhanov authored
[ASan/Win] Use clang rather than clang-cl by default for lit tests. Make Windows-only tests explicitly use clang-cl. Reviewed at http://reviews.llvm.org/D3893 llvm-svn: 209719
-
Evgeniy Stepanov authored
llvm-svn: 209718
-
Evgeniy Stepanov authored
llvm-svn: 209717
-
Alexey Bataev authored
llvm-svn: 209716
-
Tilmann Scheller authored
Add regression tests for the following transformation: str X, [x20] ... add x20, x20, #32 -> str X, [x20], #32 with X being either w0, x0, s0, d0 or q0. llvm-svn: 209715
-
Alexey Bataev authored
llvm-svn: 209714
-
Alexey Bataev authored
llvm-svn: 209713
-
Justin Bogner authored
Add an __lldb_init_module function so that importing the lldbDataFormatters script automatically adds the formatters. llvm-svn: 209712
-
Tilmann Scheller authored
Add regression tests for the following transformation: ldr X, [x20] ... add x20, x20, #32 -> ldr X, [x20], #32 with X being either w0, x0, s0, d0 or q0. llvm-svn: 209711
-
Tobias Grosser authored
llvm-svn: 209710
-
Simon Atanasyan authored
No functional changes. llvm-svn: 209709
-
Richard Trieu authored
be performed by using Decl::isInStdNamespace or DeclContext::isStdNamespace llvm-svn: 209708
-
Nick Kledzik authored
llvm-svn: 209707
-
Hans Wennborg authored
MSVC doesn't export these functions, so trying to import them doesnt' work. Also, don't let any dll attributes on the CXXDestructorDecl influence the thunk's linkage -- they should always be linkonce_odr. This takes care of the FIXME's for this in Nico's tests. Differential Revision: http://reviews.llvm.org/D3930 llvm-svn: 209706
-
Nick Kledzik authored
llvm-svn: 209705
-
Nick Kledzik authored
llvm-svn: 209704
-
Greg Clayton authored
llvm-svn: 209703
-
Greg Clayton authored
Allow classes to be intialized using current lldb::SB objects. This can help to import/export the current process state. llvm-svn: 209702
-