- 225c417 Driver: Lift clang resource directory computation to the Driver object. by Daniel Dunbar · 15 years ago
- 4d7b147 Fix possible memory leak by using an OwningPtr. by Ted Kremenek · 15 years ago
- 6cfb3ef Remove ../libexec from clang program search path, clang-cc is dead. by Daniel Dunbar · 15 years ago
- 8a0d94d Fix a FIXME. by Daniel Dunbar · 15 years ago
- 52d8f5b Darwin/ld: Don't pass '-weak_reference_mismatches non-weak' when by Daniel Dunbar · 15 years ago
- 124fca5 implement -ftabstop=width, patch by Christian Adåker by Chris Lattner · 15 years ago
- c31176d Use -fno-math-errno by default, and remove the IsMathErrnoDefault by Dan Gohman · 15 years ago
- edcfc41 Allow clang to pass -x cl through to compiler driver. by Nate Begeman · 15 years ago
- 54d76db Remove some dead variables clang-analyzer found. by Benjamin Kramer · 15 years ago
- 2550d70 move a few more symbols to .rodata/.data.rel.ro by Nuno Lopes · 15 years ago
- 73ba9a6 Driver: Fix '... -O4 -O0 ...', which was generating bitcode. by Daniel Dunbar · 15 years ago
- 1bda434 Driver: Drop ToolChain::getHost() by Daniel Dunbar · 15 years ago
- f360138 Driver: When linking, don't warn about unused arguments which are obviously only by Daniel Dunbar · 15 years ago
- a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
- ee788e7 Add ToolChain::getDriver() and use it instead of going through the HostInfo by Daniel Dunbar · 15 years ago
- 7177dee Remove ';' after method definition. Noticed by clang++, which one would think by Daniel Dunbar · 15 years ago
- 97f52ac ARM: Use front-end specific target features "soft-float" and "soft-float-abi" to communicate FP mode to target; __SOFTFP__ is set correctly now. by Daniel Dunbar · 15 years ago
- 38b48af clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option. by Daniel Dunbar · 15 years ago
- f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
- 8663b18 Fix -fdollars-in-identifiers Clang translation. by Daniel Dunbar · 15 years ago
- fc28448 implement PR5654: add -fassume-sane-operator-new, which is enabled by default, and adds the malloc attribute to the global function new() and to the overloaded new operators. by Nuno Lopes · 15 years ago
- 5f12232 Driver: Pass -resource-dir to clang -cc1, since the driver presumably already found itself. by Daniel Dunbar · 15 years ago
- 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
- 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
- 6feaf57 Make using '-fshort-enums' an error until it is actually implemented (changes the ABI, so it is dangerous to not error out if we don't support it). Fixes <rdar://problem/7461006>. by Ted Kremenek · 15 years ago
- 8ff5b28 Driver: Switch to using "clang" "-cc1" instead of "clang-cc". by Daniel Dunbar · 15 years ago
- 68f7a24 spread 'const' love to some variables. this considerably reduces the amount of dirty data around. by Nuno Lopes · 15 years ago
- 87667aa Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. by Daniel Dunbar · 15 years ago
- e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
- b40d06d Enable '-analyzer-opt-analyze-nested-blocks' by default for testing. by Ted Kremenek · 15 years ago
- 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
- f5431e3 Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. by Daniel Dunbar · 15 years ago
- 8477ee9 Driver: Switch -ccc-* options to using the standard options functionality. by Daniel Dunbar · 15 years ago
- 2658f05 OptTable: Allow option groups to be used to define "help groups", which will by Daniel Dunbar · 15 years ago
- 9a24251 OptParser: Add HelpHidden flag. by Daniel Dunbar · 15 years ago
- 0f4c59c Add gcc's -no-canonical-prefixes option to clang. by Rafael Espindola · 15 years ago
- ba8d861 Fix Clang tool translation to forward -fvisibility as separate arguments, the by Daniel Dunbar · 15 years ago
- 60e107f Add OptTable::PrintHelp. by Daniel Dunbar · 15 years ago
- daab7b1 Driver: Add Command::Creator member variable, which tracks the tool that was by Daniel Dunbar · 15 years ago
- 56ac85c clang -cc1: Move CompilerInvocation deserialization into CompilerInvocation.cpp, by Daniel Dunbar · 15 years ago
- 3b31526 Add CodeGenOptions::{SoftFloat,FloatABI}, and update the all the (far too many) places to use this instead of using the backend -soft-float and -float-abi= options. by Daniel Dunbar · 15 years ago
- 39ed0b6 clang -cc1: Fix initialization of PreprocessorOptions::TokenCache. by Daniel Dunbar · 15 years ago
- 43030a7 clang -cc1: Fix -include-pch now that the test code is in clang-cc. by Daniel Dunbar · 15 years ago
- 1c5944c clang -cc1: Initialize LangOptions::{Optimize,NoInline} by Daniel Dunbar · 15 years ago
- a28690e Always pass -fmessage-length using separate arguments. by Daniel Dunbar · 15 years ago
- 2d8f3e8 clang -cc1: Initialize LangOptions::DollarIdents correctly. by Daniel Dunbar · 15 years ago
- 1bc5c03 Don't try to generate common globals for C++ files, instead of depending on the FE to set NoCommon, and simplify CodeGenOptions initialization. by Daniel Dunbar · 15 years ago
- b33fbaa Eliminate CodeGenOptions::TimePasses. by Daniel Dunbar · 15 years ago
- 3636e1d Eliminate CodeGenOptions::SimplifyLibCalls. by Daniel Dunbar · 15 years ago
- 9e61240 clang -cc1: Use proper diagnostics for all parsing errors. by Daniel Dunbar · 15 years ago
- e032452 Change CompilerInvocation::CreateFromArgs to report errors using a proper diagnostic engine. by Daniel Dunbar · 15 years ago
- 545c281 Change CompilerInvocation::CreateFromArgs to take Argv0 and the address of main (or something in the main executable) so it can find the builtin compiler files. by Daniel Dunbar · 15 years ago
- f219e7c Move LLVM backend options to explicit clang-cc / clang -cc1 options, which we then manually pass to the command line library; eventually the latter grossness should be fixed by a real API when creating the target machine. by Daniel Dunbar · 15 years ago
- e50c167 Add clang -cc1 parsing for LangOptions. by Daniel Dunbar · 15 years ago
- 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
- 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
- 3fc7e45 Remove header which is bringing libAST in (on MSVC). by Daniel Dunbar · 15 years ago
- 6a50ad5 Fix thinko (-fno-builtin != -nobuiltininc). by Daniel Dunbar · 15 years ago
- 0ff679f Add clang -cc1 parsing for preprocessor options. by Daniel Dunbar · 15 years ago
- d8c7806 Add clang -cc1 parsing for header search options. by Daniel Dunbar · 15 years ago
- cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
- 3b84f5b Add an arg_iterator, for iterating over a subset of arguments in an ArgList. by Daniel Dunbar · 15 years ago
- eb01ac8 Add clang -cc1 parsing for frontend options. by Daniel Dunbar · 15 years ago
- 6379476 Add clang -cc1 parsing for preprocessor output options (-E). by Daniel Dunbar · 15 years ago
- 6d2eb4d Don't pass -fexceptions=0 (it is the default). by Daniel Dunbar · 15 years ago
- 98873ec Fix for Path::isSpecialFile to Path::isRegularFile API in rev 89765. by Edward O'Callaghan · 15 years ago
- 56eec2b Fix for PR5568. by Edward O'Callaghan · 15 years ago
- 33a33d8 Sketch the rest of the clang -cc1 option definitions, aka fun with C-x C-(. by Daniel Dunbar · 15 years ago
- 21affc0 Add clang -cc1 parsing of diagnostic options. by Daniel Dunbar · 15 years ago
- 90cb920 Recognize .hpp as a C++ header. by Daniel Dunbar · 15 years ago
- e2814d8 Add clang -cc1 parsing of analyzer options. by Daniel Dunbar · 15 years ago
- e6c9ae1 Fix refacto, gcc's cc1 needs to see --output-pch=, which is not just an alias by Daniel Dunbar · 15 years ago
- 1bed0c3 Driver: Add clang -cc1 dependency output options parsing. by Daniel Dunbar · 15 years ago
- 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
- a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
- 66861e0 Standardize Driver translation to call clang-cc using '-foo' form instead of '--foo'. by Daniel Dunbar · 15 years ago
- 50a4487 Add clang -cc1 parsing of CodeGenOptions. by Daniel Dunbar · 15 years ago
- 31db76c Driver: Add parsing for TargetOptions to CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
- 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
- a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
- c06a8d8 Add missing dependency for CMake. by Daniel Dunbar · 15 years ago
- 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
- 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
- 53e8484 Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... variants instead of using llvm::cl::init(true) arguments. by Daniel Dunbar · 15 years ago
- 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
- a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
- 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
- e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
- b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
- b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
- 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
- 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
- 1ce9cf0 Make MSVC happy. by Daniel Dunbar · 15 years ago
- a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
- d8e0e45 Driver: Make local type name more distinct. by Daniel Dunbar · 15 years ago
- 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
- a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
- 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
- 5e530af Added block type introspection support. by David Chisnall · 15 years ago
- 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago