1. 99d43b4 Fix build by passing in the needed variable after r153860. by Bill Wendling · 13 years ago
  2. a187c5c Add MCRegisterInfo to the MCInstPrinter factory function interface. by Jim Grosbach · 13 years ago
  3. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  4. 1e4c01b drop more llvm:: prefixes on OwningPtr<> by Dylan Noblesmith · 13 years ago
  5. fc30829 Have the driver pass CPU and target feature information to cc1as. by Jim Grosbach · 13 years ago
  6. 6bd17d2 Make use of const-correct ParseCommandLineOptions by David Blaikie · 14 years ago
  7. 6a9a6d2 Pass the SourceMgr to the MCContext for cc1as. by Jim Grosbach · 14 years ago
  8. 89ea416 driver: fix unused variable warning by Dylan Noblesmith · 14 years ago
  9. 8fdb6de Let CompilerInvocation initialization indicate failure by Dylan Noblesmith · 14 years ago
  10. 567003e Last part of support for generating dwarf for assembly source files. This gets by Kevin Enderby · 14 years ago
  11. 5d8b954 rename getHostTriple into getDefaultTargetTriple in clang by Sebastian Pop · 14 years ago
  12. ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 14 years ago
  13. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
  14. 066d502 Fix up MCInstPrinter creation to take the new SubtargetInfo parameter (see LLVM r139237) by James Molloy · 14 years ago
  15. a6b4045 Match LLVM change: TargetRegistry and TargetSelect have been moved to Support. by Evan Cheng · 14 years ago
  16. 09190be Update createMCAsmParser() to match r137735. by Jim Grosbach · 14 years ago
  17. ccb21e4 Assembler really doesn't need to create TargetMachine anymore. by Evan Cheng · 14 years ago
  18. 7b6def7 Rename createCodeEmitter to createMCCodeEmitter; createObjectStreamer to createMCObjectStreamer. by Evan Cheng · 14 years ago
  19. 3771235 Rename createAsmParser to createMCAsmParser. by Evan Cheng · 14 years ago
  20. 21118dc Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. by Evan Cheng · 14 years ago
  21. 75d8c91 Assembler doesn't need to initialize TargetMachine's anymore. by Evan Cheng · 14 years ago
  22. 3db87b8 Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where they belong. by Evan Cheng · 14 years ago
  23. d99d3e1 Match LLVM API change. by Evan Cheng · 14 years ago
  24. 66488ed Match MCContext change. by Evan Cheng · 14 years ago
  25. 36fc3aa Match LLVM API change. by Evan Cheng · 14 years ago
  26. 2860e30 Match createTargetMachine API change. by Evan Cheng · 14 years ago
  27. 884744b MCContext now takes MCRegisterInfo. by Evan Cheng · 14 years ago
  28. e27eb59 Match llvm API change. by Evan Cheng · 14 years ago
  29. 74e1332 Match createCodeEmitter change. by Evan Cheng · 14 years ago
  30. 8db0990 Unbreak -cc1as mode after MC subtarget changes by Joerg Sonnenberger · 14 years ago
  31. bb36ed9 createAsmParser API change. by Evan Cheng · 14 years ago
  32. 4d6980b Update the creation of the TargetAsmParser based on API change in r134678. by Chandler Carruth · 14 years ago
  33. 24c9db6 createMCInstPrinter doesn't need TargetMachine anymore. by Evan Cheng · 14 years ago
  34. 368691e createTargetMachine now takes a CPU string. by Evan Cheng · 14 years ago
  35. d793350 Support -fatal-warnings for the assembler frontend by Joerg Sonnenberger · 14 years ago
  36. 1bf3902 Update API. by Rafael Espindola · 14 years ago
  37. 402adc3 Frontend/cc1as: Add support for -L. by Daniel Dunbar · 14 years ago
  38. ad3dfbe Pass in the TargetMachine parameter to the inst printer. by Bill Wendling · 14 years ago
  39. 3176cca Add support for the --noexecstack option. Fixes PR8762. by Rafael Espindola · 15 years ago
  40. 4eeebc4 MemoryBuffer API update. by Michael J. Spencer · 15 years ago
  41. 66cdf26 Update for LLVM API change. by Daniel Dunbar · 15 years ago
  42. 7872d48 Fixed version of 121435. by Rafael Espindola · 15 years ago
  43. afb3fa9 Revert my previous patch to make the valgrind bots happy. by Rafael Espindola · 15 years ago
  44. 4cf8b1e Update clang for the API changes in the cfi patch. by Rafael Espindola · 15 years ago
  45. 3a321e2 Use error_code instead of std::string* for MemoryBuffer. by Michael J. Spencer · 15 years ago
  46. 03013fa Merge System into Support. by Michael J. Spencer · 15 years ago
  47. e8f0ba7 getNumErrors() -> hasErrorOccurred() by Argyrios Kyrtzidis · 15 years ago
  48. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 15 years ago
  49. 4f036fa Call InitSections when assembling. This makes clang's output match that of by Rafael Espindola · 15 years ago
  50. 2dc1453 Straighten out target triples provided on the command line before using them. by Duncan Sands · 15 years ago
  51. bdbb004 Simplify the ownership model for DiagnosticClients, which was really by Douglas Gregor · 15 years ago
  52. 726578c Call llvm::remove_fatal_error_handler before deallocating objects by Dan Gohman · 15 years ago
  53. 7ac3d5a Prepare for upcoming ownership change. by Benjamin Kramer · 15 years ago
  54. e9122a3 Update for LLVM API change. by Daniel Dunbar · 15 years ago
  55. 7374f1b clang -cc1as: Switch to using AsmParser constructor function. by Daniel Dunbar · 15 years ago
  56. daa81c0 MC: Pass the target instance to the AsmParser constructor. by Daniel Dunbar · 15 years ago
  57. 7e4953e Driver: Fix arg_iterator typing to reflect that it is really an iterator over Arg*s. by Daniel Dunbar · 15 years ago
  58. c673af7 clang -cc1as: Add -help, -version, and -mllvm support. by Daniel Dunbar · 15 years ago
  59. 41b5b17 Driver/MC: Add 'clang -cc1as' integrated assembler tool, currently accepts approximately the same interface as 'llvm-mc'. by Daniel Dunbar · 15 years ago