Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Re-sort #include lines for unittests. This uses a slightly modified | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | clang-format (https://reviews.llvm.org/D33932) to keep primary headers at the top and handle new utility headers like 'gmock' consistently with other utility headers. No other change was made. I did no manual edits, all of this is clang-format. This should allow other changes to have more clear and focused diffs, and is especially motivated by moving some headers into more focused libraries. llvm-svn: 304786 | ||||
* | [C++11] Use 'nullptr'. | Craig Topper | 2014-06-08 | 1 | -1/+1 |
| | | | | llvm-svn: 210442 | ||||
* | DataExtractor: Fix integer truncation issues in LEB128 extraction. | Benjamin Kramer | 2012-08-20 | 1 | -0/+9 |
| | | | | llvm-svn: 162201 | ||||
* | unittests/Support/DataExtractorTest.cpp: Specify ULL explicitly to a few ↵ | NAKAMURA Takumi | 2011-09-13 | 1 | -3/+3 |
| | | | | | | | | constants. It seems i686-cygwin-gcc-4.3 does not accept 64-bit constant without LL. llvm-svn: 139664 | ||||
* | Add the DataExtractor utility class. | Benjamin Kramer | 2011-09-13 | 1 | -0/+111 |
It is an endian-aware helper that can read data from a StringRef. It will come in handy for DWARF parsing. This class is inspired by LLDB's DataExtractor, but is stripped down to the bare minimum needed for DWARF. Comes with unit tests! llvm-svn: 139626 |