summaryrefslogtreecommitdiffstats
path: root/clang/unittests/AST/DeclTest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* Revert "Lexer: always allow imaginary constants in GNU mode."Tim Northover2017-08-081-1/+1
| | | | | | | This reverts r310423. It was committed by mistake, I intended to commit the improved diagnostics for implicit conversions instead. llvm-svn: 310426
* Lexer: always allow imaginary constants in GNU mode.Tim Northover2017-08-081-1/+1
| | | | llvm-svn: 310423
* Replace OwningPtr with std::unique_ptr.Ahmed Charles2014-03-071-1/+1
| | | | | | This compiles cleanly with lldb/lld/clang-tools-extra/llvm. llvm-svn: 203279
* ASTTests/DeclTest.cpp: Tweak on msvc target to add "-fno-ms-extensions".NAKAMURA Takumi2013-06-051-0/+1
| | | | | | MS extensions don't prefer imaginary suffix even with -std=c++11. llvm-svn: 183301
* __uint128_t is only available on 64 bit platforms, only test it when it's ↵Benjamin Kramer2013-06-031-0/+2
| | | | | | around. llvm-svn: 183146
* Fix memory leak for APValues that do memory allocation.Manuel Klimek2013-06-031-0/+56
This patch ensures that APValues are deallocated with the ASTContext by registering a deallocation function for APValues to the ASTContext. Original version of the patch by James Dennett. llvm-svn: 183101
OpenPOWER on IntegriCloud