| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix a FIXME. | Daniel Dunbar | 2010-01-10 | 1 | -2/+2 |
| * | Darwin/ld: Don't pass '-weak_reference_mismatches non-weak' when | Daniel Dunbar | 2010-01-10 | 1 | -6/+0 |
| * | implement -ftabstop=width, patch by Christian Adåker | Chris Lattner | 2010-01-09 | 1 | -0/+5 |
| * | Use -fno-math-errno by default, and remove the IsMathErrnoDefault | Dan Gohman | 2010-01-08 | 3 | -14/+4 |
| * | Allow clang to pass -x cl through to compiler driver. | Nate Begeman | 2010-01-05 | 1 | -0/+2 |
| * | Remove some dead variables clang-analyzer found. | Benjamin Kramer | 2009-12-25 | 1 | -5/+1 |
| * | move a few more symbols to .rodata/.data.rel.ro | Nuno Lopes | 2009-12-23 | 1 | -1/+1 |
| * | Driver: Fix '... -O4 -O0 ...', which was generating bitcode. | Daniel Dunbar | 2009-12-23 | 1 | -2/+5 |
| * | Driver: Drop ToolChain::getHost() | Daniel Dunbar | 2009-12-23 | 1 | -1/+1 |
| * | Driver: When linking, don't warn about unused arguments which are obviously only | Daniel Dunbar | 2009-12-22 | 1 | -0/+5 |
| * | ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". | Daniel Dunbar | 2009-12-21 | 1 | -0/+29 |
| * | Add ToolChain::getDriver() and use it instead of going through the HostInfo | Daniel Dunbar | 2009-12-21 | 3 | -45/+48 |
| * | Remove ';' after method definition. Noticed by clang++, which one would think | Daniel Dunbar | 2009-12-19 | 1 | -1/+1 |
| * | ARM: Use front-end specific target features "soft-float" and "soft-float-abi"... | Daniel Dunbar | 2009-12-19 | 1 | -1/+19 |
| * | clang -cc1: Rename -mcpu to -target-cpu to match other target options and not... | Daniel Dunbar | 2009-12-18 | 1 | -2/+2 |
| * | Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used | Daniel Dunbar | 2009-12-18 | 3 | -0/+22 |
| * | Fix -fdollars-in-identifiers Clang translation. | Daniel Dunbar | 2009-12-16 | 1 | -2/+2 |
| * | implement PR5654: add -fassume-sane-operator-new, which is enabled by default... | Nuno Lopes | 2009-12-16 | 1 | -0/+4 |
| * | Driver: Pass -resource-dir to clang -cc1, since the driver presumably already... | Daniel Dunbar | 2009-12-15 | 1 | -1/+11 |
| * | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin | 2009-12-12 | 1 | -1/+1 |
| * | Implement runtime checks for undefined behavior. WIP. | Mike Stump | 2009-12-12 | 1 | -0/+1 |
| * | Make using '-fshort-enums' an error until it is actually implemented (changes... | Ted Kremenek | 2009-12-12 | 1 | -1/+2 |
| * | Driver: Switch to using "clang" "-cc1" instead of "clang-cc". | Daniel Dunbar | 2009-12-11 | 1 | -2/+7 |
| * | spread 'const' love to some variables. this considerably reduces the amount o... | Nuno Lopes | 2009-12-10 | 2 | -3/+3 |
| * | Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. | Daniel Dunbar | 2009-12-08 | 1 | -3/+6 |
| * | Remove several .c_str() to be forward-compatible with StringRef. | Jeffrey Yasskin | 2009-12-08 | 1 | -3/+3 |
| * | Enable '-analyzer-opt-analyze-nested-blocks' by default for testing. | Ted Kremenek | 2009-12-07 | 1 | -0/+3 |
| * | Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and | Rafael Espindola | 2009-12-07 | 2 | -3/+3 |
| * | Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. | Daniel Dunbar | 2009-12-05 | 1 | -2/+3 |
| * | Driver: Switch -ccc-* options to using the standard options functionality. | Daniel Dunbar | 2009-12-04 | 1 | -167/+38 |
| * | OptTable: Allow option groups to be used to define "help groups", which will | Daniel Dunbar | 2009-12-04 | 1 | -20/+61 |
| * | OptParser: Add HelpHidden flag. | Daniel Dunbar | 2009-12-04 | 1 | -1/+5 |
| * | Add gcc's -no-canonical-prefixes option to clang. | Rafael Espindola | 2009-12-04 | 1 | -0/+3 |
| * | Fix Clang tool translation to forward -fvisibility as separate arguments, the | Daniel Dunbar | 2009-12-03 | 1 | -2/+6 |
| * | Add OptTable::PrintHelp. | Daniel Dunbar | 2009-12-03 | 2 | -0/+77 |
| * | Driver: Add Command::Creator member variable, which tracks the tool that was | Daniel Dunbar | 2009-12-02 | 2 | -20/+21 |
| * | clang -cc1: Move CompilerInvocation deserialization into CompilerInvocation.cpp, | Daniel Dunbar | 2009-12-01 | 1 | -672/+1 |
| * | Add CodeGenOptions::{SoftFloat,FloatABI}, and update the all the (far too man... | Daniel Dunbar | 2009-11-30 | 2 | -4/+6 |
| * | clang -cc1: Fix initialization of PreprocessorOptions::TokenCache. | Daniel Dunbar | 2009-11-30 | 1 | -1/+4 |
| * | clang -cc1: Fix -include-pch now that the test code is in clang-cc. | Daniel Dunbar | 2009-11-30 | 1 | -5/+3 |
| * | clang -cc1: Initialize LangOptions::{Optimize,NoInline} | Daniel Dunbar | 2009-11-30 | 1 | -2/+12 |
| * | Always pass -fmessage-length using separate arguments. | Daniel Dunbar | 2009-11-30 | 1 | -2/+2 |
| * | clang -cc1: Initialize LangOptions::DollarIdents correctly. | Daniel Dunbar | 2009-11-30 | 1 | -1/+1 |
| * | Don't try to generate common globals for C++ files, instead of depending on t... | Daniel Dunbar | 2009-11-30 | 1 | -5/+0 |
| * | Eliminate CodeGenOptions::TimePasses. | Daniel Dunbar | 2009-11-30 | 1 | -1/+0 |
| * | Eliminate CodeGenOptions::SimplifyLibCalls. | Daniel Dunbar | 2009-11-30 | 1 | -3/+0 |
| * | clang -cc1: Use proper diagnostics for all parsing errors. | Daniel Dunbar | 2009-11-29 | 1 | -64/+65 |
| * | Change CompilerInvocation::CreateFromArgs to report errors using a proper dia... | Daniel Dunbar | 2009-11-29 | 1 | -1/+11 |
| * | Change CompilerInvocation::CreateFromArgs to take Argv0 and the address of ma... | Daniel Dunbar | 2009-11-29 | 1 | -4/+29 |
| * | Move LLVM backend options to explicit clang-cc / clang -cc1 options, which we... | Daniel Dunbar | 2009-11-29 | 2 | -25/+37 |