| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-09-15 | [LLDB][NativePDB] Global ctor and dtor should be global decls. | Zequan Wu | |
| This fixes a crash that mistaken global ctor/dtor as funciton methods. Differential Revision: https://reviews.llvm.org/D133446 | |||
| 2021-10-23 | Use StringRef::contains (NFC) | Kazu Hirata | |
| 2020-01-24 | [lldb][NFC] Fix all formatting errors in .cpp file headers | Raphael Isemann | |
| Summary: A *.cpp file header in LLDB (and in LLDB) should like this: ``` //===-- TestUtilities.cpp -------------------------------------------------===// ``` However in LLDB most of our source files have arbitrary changes to this format and these changes are spreading through LLDB as folks usually just use the existing source files as templates for their new files (most notably the unnecessary editor language indicator `-*- C++ -*-` is spreading and in every review someone is pointing out that this is wrong, resulting in people pointing out that this is done in the same way in other files). This patch removes most of these inconsistencies including the editor language indicators, all the different missing/additional '-' characters, files that center the file name, missing trailing `===//` (mostly caused by clang-format breaking the line). Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere Reviewed By: JDevlieghere Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D73258 | |||
| 2019-01-19 | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | |
| 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 | |||
| 2018-11-07 | Add a break to avoid an unannotated fall-through. | Eric Christopher | |
| llvm-svn: 346294 | |||
| 2018-11-06 | Add parens to silence warning | Benjamin Kramer | |
| MSVCUndecoratedNameParser.cpp:25:36: warning: '&&' within '||' [-Wlogical-op-parentheses] llvm-svn: 346220 | |||
| 2018-11-06 | [PDB] Introduce `MSVCUndecoratedNameParser` | Aleksandr Urakov | |
| This patch introduces the simple MSVCUndecoratedNameParser. It is needed for parsing names of PDB symbols corresponding to template instantiations. For example, for the name `operator<<A>'::`2'::B::operator> we can't just split the name with :: (as it is implemented for now) to retrieve its scopes. This parser processes such names in a more correct way. Differential Revision: https://reviews.llvm.org/D52461 llvm-svn: 346213 | |||
