- Mar 03, 2014
-
-
Peter Collingbourne authored
llvm-svn: 202682
-
Argyrios Kyrtzidis authored
[libclang] Introduce APIs that assist in constructing a simple module.map file for a user framework. rdar://16092858 llvm-svn: 202681
-
Craig Topper authored
Determine support for colored output from stdout instead of stderr since that's where the diagnostics go. llvm-svn: 202680
-
Ahmed Charles authored
Allows removing #include's in LLVM while switching to std::unique_ptr. llvm-svn: 202679
-
Ahmed Charles authored
Suggestion by Richard Smith. llvm-svn: 202678
-
Ahmed Charles authored
Allows removing #include's in LLVM while switching to std::unique_ptr. llvm-svn: 202677
-
Ahmed Charles authored
Allows removing #include's in LLVM while switching to std::unique_ptr. llvm-svn: 202676
-
Argyrios Kyrtzidis authored
Returning CXString is not appropriate if we want to switch to a non-string format buffer. llvm-svn: 202675
-
Saleem Abdulrasool authored
The diagnostics tests were missing from the previous introduction of ifeqs. llvm-svn: 202674
-
Marshall Clow authored
Implement LWG Paper n3887: Consistent Metafunction Aliases. This adds std::tuple_element_t<> as an alias for tuple_element<>::type. Clean up the synopsis for tuple_element in <utility> as well. llvm-svn: 202673
-
Marshall Clow authored
Per N3924, mark random_shuffle as deprecated in the synopsis for <algorithm>. Since we don't actually do anything when a call is deprecated, there is no functionality change. Maybe someday, we'll decide to warn when using a deprecated function. llvm-svn: 202672
-
Marshall Clow authored
Implement LWG Issue #2285 - make_reverse_iterator. Also mark issues #1450 and #2205 as complete; they are just wording changes in the standard. Mark issues #2359, #2320 and #2322 as complete - libc++ implements them already. llvm-svn: 202671
-
Venkatraman Govindaraju authored
llvm-svn: 202670
-
Peter Collingbourne authored
It isn't appropriate for a tool to be stomping over the dependency files, especially if the actual build uses a compiler other than Clang or the tool cannot find all the headers for some reason (which would cause the existing dependency file to be deleted). If a tool actually needs to care about dependency files we can think about adding a mechanism for getting to this information. Differential Revision: http://llvm-reviews.chandlerc.com/D2912 llvm-svn: 202669
-
Peter Collingbourne authored
The goal is to make it possible for checks to emit diagnostics at levels other than 'warning'. Differential Revision: http://llvm-reviews.chandlerc.com/D2913 llvm-svn: 202668
-
David Majnemer authored
This commit reverts r201037, it's functionality is not needed given the definition of std::max_align_t in libcxx circa r201843. llvm-svn: 202667
-
- Mar 02, 2014
-
-
Venkatraman Govindaraju authored
llvm-svn: 202666
-
Benjamin Kramer authored
They didn't provide any value over the default ones but blocked move semantics. llvm-svn: 202664
-
Venkatraman Govindaraju authored
llvm-svn: 202663
-
Benjamin Kramer authored
The interaction between defaulted operators and move elision isn't totally obvious, add a unit test so it doesn't break unintentionally. llvm-svn: 202662
-
Venkatraman Govindaraju authored
llvm-svn: 202661
-
Venkatraman Govindaraju authored
llvm-svn: 202660
-
David Majnemer authored
Some files had CRLF line terminators, some only had a mixture of CRLF and LF. Switch to LF. llvm-svn: 202659
-
Hal Finkel authored
This adds support for the PPC "wc" inline asm constraint (used for allocating individual CR bits). Support for this constraint type was recently added to the LLVM PowerPC backend. Although gcc does not currently support allocating individual CR bits, this identifier choice has been coordinated with the gcc PowerPC team, and will be marked as reserved for this purpose in the gcc constraints.md file. Prior to this change, none of the multi-character PPC constraints were handled correctly (the '^' escape character was not being added as required by the parsing code in LLVM). This should now be fixed. I'll add tests for these other constraints as support is added for them in the backend. llvm-svn: 202658
-
Hal Finkel authored
Now that the PowerPC backend can track individual CR bits as first-class registers, we should also have a way of allocating them for inline asm statements. Because these registers are only one bit, if an output variable is implicitly cast to a larger integer size, we'll get an any_extend to that larger type (this is part of the existing target-independent logic). As a result, regardless of the size of the output type, only the first bit is meaningful. The constraint identifier "wc" has been chosen for this purpose. Although gcc does not currently support allocating individual CR bits, this identifier choice has been coordinated with the gcc PowerPC team, and will be marked as reserved for this purpose in the gcc constraints.md file. llvm-svn: 202657
-
David Majnemer authored
llvm-svn: 202656
-
Aaron Ballman authored
Adding some cross references to the sanitizer attribute documentation. Removes a Sphinx warning pointed out by Sean Silva. llvm-svn: 202655
-
Aaron Ballman authored
llvm-svn: 202654
-
Benjamin Kramer authored
llvm-svn: 202653
-
Benjamin Kramer authored
No intended functionality change. llvm-svn: 202652
-
Tobias Grosser authored
We mostly iterate over read-only values. Following a suggestion by Duncan P.N Exons Smith, we use the construct 'const auto &' for this. llvm-svn: 202651
-
Tobias Grosser authored
clang-formats behaviour has changed for a couple of C++11 formattings. We adapt Polly to ensure our formatting checks are clean again. llvm-svn: 202650
-
Dmitri Gribenko authored
llvm-svn: 202649
-
Tobias Grosser authored
clang-format requires a space before the ":" in the foreach loop. Even though this is surprising to me, we follow this style to make our formatting consistent with clang-format. I found that this clang-format style is used in a couple of C++11 examples, hence I believe the fact that clang-format adds a colon is not a bug but just something I was not used to yet. llvm-svn: 202648
-
Michael Kuperstein authored
This includes instructions that relate to memory access (load/store/GEP), comparison instructions and calls. Work was done by lama.saba@intel.com. llvm-svn: 202647
-
Benjamin Kramer authored
llvm-svn: 202646
-
Benjamin Kramer authored
llvm-svn: 202645
-
Benjamin Kramer authored
The old implementation is no longer needed in C++11. llvm-svn: 202644
-
Benjamin Kramer authored
llvm-svn: 202643
-
Chandler Carruth authored
access to it on all host toolchains. llvm-svn: 202642
-