Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed the comparison operator for the enhanced | Sean Callanan | 2011-03-12 | 1 | -7/+2 |
| | | | | | | disassembler's disassembler map. llvm-svn: 127527 | ||||
* | Fix comparator used for looking up previously instantiated EDDisassemblers. | Shantonu Sen | 2011-02-09 | 1 | -2/+4 |
| | | | | | | | | | Now, Syntax is only used as a tie-breaker if the Arch matches. Previously, a request for x86_64 disassembler followed by the i386 disassembler in a single process would return the cached x86_64 disassembler. Fixes <rdar://problem/8958982> llvm-svn: 125215 | ||||
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
| | | | | llvm-svn: 120298 | ||||
* | there is no reason to dynamically generate a static header. | Chris Lattner | 2010-07-20 | 1 | -1/+1 |
| | | | | llvm-svn: 108887 | ||||
* | start straightening out libedis's dependencies and make it fit | Chris Lattner | 2010-07-20 | 1 | -0/+271 |
better in the llvm world. Among other things, this changes: 1. The guts of libedis are now moved into lib/MC/MCDisassembler 2. llvm-mc now depends on lib/MC/MCDisassembler, not tools/edis, so edis and mc don't have to be built in series. 3. lib/MC/MCDisassembler no longer depends on the C api, the C API depends on it. 4. Various code cleanup changes. There is still a lot to be done to make edis fit with the llvm design, but this is an incremental step in the right direction. llvm-svn: 108869 |