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 | ||||
* | Add a test showing we can write a vector of floats. | Rafael Espindola | 2016-01-25 | 1 | -0/+21 |
| | | | | llvm-svn: 258701 | ||||
* | Add ArrayRef support to EndianStream. | Rafael Espindola | 2016-01-22 | 1 | -0/+30 |
| | | | | | | | | | | Using an array instead of ArrayRef would allow type inference, but (short of using C99) one would still need to write typedef uint16_t VT[]; LE.write(VT{0x1234, 0x5678}); llvm-svn: 258535 | ||||
* | Add support for double / float to EndianStream | Matt Arsenault | 2015-02-05 | 1 | -0/+157 |
Also add new unit tests for endian::Writer llvm-svn: 228269 |