Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix MCDataAtom never calling remap when adding data. | Rafael Espindola | 2013-10-16 | 3 | -0/+57 |
| | | | | | | | | | | | | | | | | This patch fixes a small mistake in MCDataAtom::addData() where it doesn't ever call remap(): - if (Data.size() > Begin - End - 1) + if (Data.size() > End + 1 - Begin) remap(Begin, End + 1); This is currently not visible because of another bug is the disassembler, so the patch includes a unit test. Patch by Stephen Checkoway. llvm-svn: 192823 | ||||
* | Remove now empty unit test directory. | Benjamin Kramer | 2009-08-01 | 1 | -15/+0 |
| | | | | llvm-svn: 77790 | ||||
* | daniel says it's fine to nuke this. | Chris Lattner | 2009-08-01 | 1 | -101/+0 |
| | | | | llvm-svn: 77789 | ||||
* | update for new api | Chris Lattner | 2009-08-01 | 1 | -4/+4 |
| | | | | llvm-svn: 77788 | ||||
* | Adjust unit test for the MCSection changes. | Benjamin Kramer | 2009-07-31 | 1 | -4/+5 |
| | | | | llvm-svn: 77714 | ||||
* | Fix order of arguments to EXPECT_EQ | Daniel Dunbar | 2009-06-29 | 1 | -11/+8 |
| | | | | llvm-svn: 74441 | ||||
* | Sketch streamer support for .align, .org functionality. | Daniel Dunbar | 2009-06-24 | 1 | -0/+28 |
| | | | | llvm-svn: 74109 | ||||
* | We decided to not worry about Atoms for now, it should be straightforward to | Daniel Dunbar | 2009-06-24 | 1 | -4/+2 |
| | | | | | | | | reintroduce them later. Also, don't require MCSection* when creating a symbol. llvm-svn: 74081 | ||||
* | MCStreamer: Test printing values. | Daniel Dunbar | 2009-06-24 | 1 | -0/+25 |
| | | | | llvm-svn: 74076 | ||||
* | Start MCAsmStreamer implementation. | Daniel Dunbar | 2009-06-24 | 2 | -0/+67 |
llvm-svn: 74044 |