1. cd35eff [modules] Driver support for precompiling a collection of files as a single by Richard Smith · 7 years ago
  2. ac8ccd5 [HIP] Fix output file extension by Yaxun Liu · 7 years ago
  3. 398612b [HIP] Add hip offload kind by Yaxun Liu · 7 years ago
  4. 5e4511c [Driver] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
  5. 3315a6a Fix MSVC "not all control paths return a value" warning by Simon Pilgrim · 9 years ago
  6. 3b7e38b [Driver][OpenMP] Add support to create jobs for unbundling actions. by Samuel Antao · 9 years ago
  7. 7cab8f1 [Driver][OpenMP] Add support to create jobs for bundling actions. by Samuel Antao · 9 years ago
  8. fab4f37 [Driver][OpenMP] Update actions builder to create unbundling action when necessary. by Samuel Antao · 9 years ago
  9. 69d6f31 [Driver][OpenMP] Update actions builder to create bundling action when necessary. by Samuel Antao · 9 years ago
  10. 39f9da2 [Driver][OpenMP] Create tool chains for OpenMP offloading kind. by Samuel Antao · 9 years ago
  11. 087f1fb Rename variable to not use C++ reserved name (leading underscore + capital) (NFC) by Mehdi Amini · 9 years ago
  12. 44f0eda Fix MSVC build: requires namespace in front of StringRef (NFC) by Mehdi Amini · 9 years ago
  13. c50b1a2 Turn ArchName/BoundArch in Driver from raw pointer to StringRef (NFC) by Mehdi Amini · 9 years ago
  14. 2a7248f Remove extra semi-colon. Fixes warning and Werror bots. by Eric Christopher · 9 years ago
  15. 2fd3213 Attempt to fix breakage caused by r275645 for Windows bots. by Samuel Antao · 9 years ago
  16. d06239d [CUDA][OpenMP] Create generic offload action by Samuel Antao · 9 years ago
  17. 4b926a2 [CUDA] Add missing namespace qualification on CudaArch in Action.cpp. by Justin Lebar · 9 years ago
  18. 6290761 [CUDA] Add utility functions for dealing with CUDA versions / architectures. by Justin Lebar · 9 years ago
  19. ef1aaac [CUDA] Add support for CUDA 8 and sm_60-62. by Justin Lebar · 9 years ago
  20. 21e5d4f [CUDA] Invoke ptxas and fatbinary during compilation. by Justin Lebar · 10 years ago
  21. 29bfa89 [CUDA] Add explicit mapping from sm_XX to compute_YY. by Justin Lebar · 10 years ago
  22. 7bf7798 [CUDA] Reject values for --cuda-gpu-arch that are not of the form /sm_\d+/. by Justin Lebar · 10 years ago
  23. 4109461 Move ownership of Action objects into Compilation. by Justin Lebar · 10 years ago
  24. 5e2a3ec [CUDA] use -aux-triple to pass target triple of opposite side of compilation by Artem Belevich · 10 years ago
  25. ccf0d69 Augmented CudaHostAction to carry device-side triple. by Artem Belevich · 10 years ago
  26. db35a3e [CUDA] Moved device-side triple calculation to buildCudaActions(). by Artem Belevich · 10 years ago
  27. 5bde4e0 Fixed style issues pointed out by Justin Bogner. by Artem Belevich · 10 years ago
  28. a97ad16 Driver: Delete dead code by Justin Bogner · 10 years ago
  29. 0ff05cd [cuda] Driver changes to compile and stitch together host and device-side CUDA code. by Artem Belevich · 10 years ago
  30. abbd6d6 This reverts commit r242058, r242065, r242067. by Rafael Espindola · 10 years ago
  31. cd42e7f [cuda] Driver changes to compile and stitch together host and device-side CUDA code. by Artem Belevich · 10 years ago
  32. 23a55f1 Reapply "Change -save-temps to emit unoptimized bitcode files." by Bob Wilson · 11 years ago
  33. da0acc8 Revert "Change -save-temps to emit unoptimized bitcode files." by Reid Kleckner · 11 years ago
  34. f5ba828 Change -save-temps to emit unoptimized bitcode files. by Bob Wilson · 11 years ago
  35. 486f440 unique_ptrify Driver Action handling by David Blaikie · 11 years ago
  36. 9b9a8d3 Move -verify-pch to use VerifyJobAction by Ben Langmuir · 12 years ago
  37. 898229a [Driver] Refactor clang driver to use LLVM's Option library by Reid Kleckner · 12 years ago
  38. 248357f Remove the SplitDebug action and replace with a set of commands by Eric Christopher · 13 years ago
  39. 2ba5fcb Driver and option support for -gsplit-dwarf. This is a part of by Eric Christopher · 13 years ago
  40. 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
  41. f7639e1 Add new code migrator support for migrating existing Objective-C code to use by Ted Kremenek · 14 years ago
  42. 68e081d Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 14 years ago
  43. aa347f9 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 14 years ago
  44. 7900020 More missing header inclusions from llvm_unreachable migration. by David Blaikie · 14 years ago
  45. 83d382b Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
  46. 551ef45 Add support for a verifier to the driver. Currently only verifies debug by Eric Christopher · 14 years ago
  47. 6da9077 Remove stray emacs mode markers in all these files that was causing emacs to by Nick Lewycky · 15 years ago
  48. 8829962 Driver: Add an explicit dsymutil action. by Daniel Dunbar · 15 years ago
  49. 66187b3 Driver: Free Action objects. by Daniel Dunbar · 16 years ago
  50. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  51. 896cb66 Driver: I was too hasty in free'ing Actions, we sometimes share by Daniel Dunbar · 17 years ago
  52. f0eddb8 Driver: Move actions into Compilation, and construct the compilation earlier. by Daniel Dunbar · 17 years ago
  53. 438ff8d Driver: Action vtables were still hungry. by Daniel Dunbar · 17 years ago
  54. 3f261ff Driver: Provide food and shelter for Action vtables. by Daniel Dunbar · 17 years ago
  55. 7326ad5 ccc/Driver: Normalize phase spelling in -ccc-print-phases. by Daniel Dunbar · 17 years ago
  56. 80665fb Driver: Add cast<> support for Action, and some other accessors. by Daniel Dunbar · 17 years ago
  57. f479c12 Driver: Add majority of driver-driver implementation. by Daniel Dunbar · 17 years ago