| Commit message (Expand) | Author | Age | Files | Lines |
| * | refactor -ccc-gcc-name code | Dylan Noblesmith | 2011-04-09 | 1 | -1/+21 |
| * | Rename -mtrap_function= to -ftrap_function= since it's now a target neutral o... | Evan Cheng | 2011-04-08 | 1 | -11/+7 |
| * | Add -mtrap_function=<> option. rdar://9257465 | Evan Cheng | 2011-04-08 | 1 | -0/+11 |
| * | fix a typo, patch by PaX team. | Chris Lattner | 2011-04-08 | 1 | -1/+1 |
| * | Driver: Don't attempt to forward some Clang-only options to cc1. | Daniel Dunbar | 2011-04-07 | 1 | -0/+6 |
| * | Driver: Sketch driver support for a CC_LOG_DIAGNOSTICS options, similar to the | Daniel Dunbar | 2011-04-07 | 1 | -0/+6 |
| * | Add ToolChain support to get Clang to recognize Ubuntu/ppc and Gentoo/ppc64. | Ted Kremenek | 2011-04-05 | 1 | -0/+8 |
| * | Driver/Darwin: Tweak simulator link logic a bit more to be closer to GCC. | Daniel Dunbar | 2011-04-01 | 1 | -2/+8 |
| * | Driver/Darwin: Tweak link logic for simulator. | Daniel Dunbar | 2011-03-31 | 1 | -1/+4 |
| * | Integrated-As: Support -Wa,-L when using the integrated assembler. | Daniel Dunbar | 2011-03-28 | 1 | -4/+1 |
| * | Add an option to suppress include stack printing on note diagnostics. | Chandler Carruth | 2011-03-27 | 1 | -0/+10 |
| * | Add -f[no-]strict-overflow to the Clang driver. Use it to set the | Chandler Carruth | 2011-03-27 | 1 | -1/+11 |
| * | Rework checker "packages" and groups to be more hierarchical. | Ted Kremenek | 2011-03-24 | 1 | -16/+7 |
| * | Frontend: Add a more explicit -backend-option flag for passing backend command | Daniel Dunbar | 2011-03-22 | 1 | -3/+3 |
| * | Add clang support for cortex-m0 cpus. Patch by James Orr. | Bob Wilson | 2011-03-21 | 1 | -0/+2 |
| * | Introduce FindTargetProgramPath to check for a target-specific helper | Joerg Sonnenberger | 2011-03-21 | 1 | -4/+15 |
| * | Remember sysroot in Driver. Pass it down to ld for NetBSD, FreeBSD | Joerg Sonnenberger | 2011-03-21 | 1 | -4/+11 |
| * | Driver: Forward -traditional and -traditional-cpp in preprocessing modes. | Daniel Dunbar | 2011-03-18 | 1 | -2/+7 |
| * | The Darwin kernel does not provide useful guard variable support. | John McCall | 2011-03-18 | 1 | -0/+6 |
| * | Driver/Obj-C: Be compatible with GCC behavior in that -fno-exceptions *does not* | Daniel Dunbar | 2011-03-17 | 1 | -19/+10 |
| * | Driver/Darwin: These are command line options, not target features. | Daniel Dunbar | 2011-03-17 | 1 | -2/+2 |
| * | Driver/Darwin: Suppress spurious warning about -force_cpusubtype_ALL. | Daniel Dunbar | 2011-03-17 | 1 | -1/+2 |
| * | Driver/Darwin/ARM: Kernel/kext code has more strict alignment requirements. | Daniel Dunbar | 2011-03-17 | 1 | -4/+14 |
| * | Driver/ARM: Match GCC behavior in that -msoft-float disables NEON, despite this | Daniel Dunbar | 2011-03-17 | 1 | -0/+7 |
| * | Re-enable the IdempotentOperations checker for --analyze, and put it and the ... | Ted Kremenek | 2011-03-12 | 1 | -1/+2 |
| * | If called as *cpp or *cpp-[^-]*, run only the preprocessor. If no | Joerg Sonnenberger | 2011-03-06 | 1 | -2/+2 |
| * | Fix driver for thumb-capable ARM hosts, from Mikko Lehtonen! | Douglas Gregor | 2011-03-06 | 1 | -3/+7 |
| * | build: Allow disabling movt/movw from build, for testing purposes. | Daniel Dunbar | 2011-03-02 | 1 | -0/+6 |
| * | Driver/Darwin: Be bug compatible with GCC and ignore -pg on ARM. | Daniel Dunbar | 2011-03-01 | 1 | -3/+6 |
| * | The default CPU on FreeBSD for i386 should be i486, not pentium4. | Roman Divacky | 2011-03-01 | 1 | -0/+5 |
| * | For linking on FreeBSD, don't add a hardcoded "-L/usr/lib", but | Roman Divacky | 2011-03-01 | 1 | -7/+7 |
| * | Implement -mrtd which sets the StdCall calling convention to be the default | Roman Divacky | 2011-03-01 | 1 | -0/+3 |
| * | Disable more warnings so that it is safe to use | Rafael Espindola | 2011-03-01 | 1 | -0/+8 |
| * | Don't warn about "clang -use-gold-plugin -c ...". With this users can say | Rafael Espindola | 2011-02-28 | 1 | -0/+2 |
| * | [analyzer] Remove '-analyzer-check-objc-mem' flag, the nominee for best misno... | Argyrios Kyrtzidis | 2011-02-28 | 1 | -4/+0 |
| * | Make -fobjc-nonfragile-abi and -fgnu-runtime imply -fblocks (unless -fno-bloc... | David Chisnall | 2011-02-28 | 1 | -1/+4 |
| * | Fix a tiny goof in the Driver's logic which caused the explicit presence | Chandler Carruth | 2011-02-28 | 1 | -1/+1 |
| * | Add a -fcxx-exceptions flag to the frontend, which can be used to enable | Anders Carlsson | 2011-02-28 | 1 | -21/+74 |
| * | [analyzer] Move the DeadStores checker out of the 'core' package. | Argyrios Kyrtzidis | 2011-02-28 | 1 | -0/+2 |
| * | Factor code out into a helper function, shouldUseExceptionTablesForObjCExcept... | Anders Carlsson | 2011-02-28 | 1 | -11/+20 |
| * | Make clang -cc1 disable Objective-C exceptions by default, and add a -fobjc-e... | Anders Carlsson | 2011-02-22 | 1 | -4/+4 |
| * | Pass the right linker flag in openbsd::Link::ConstructJob, | Chris Lattner | 2011-02-21 | 1 | -1/+1 |
| * | Add a new ObjCExceptions member variable to LangOptions. This controls whethe... | Anders Carlsson | 2011-02-19 | 1 | -0/+5 |
| * | [analyzer] '-analyzer-check-objc-mem' can go through the llvm/clang codebase ... | Argyrios Kyrtzidis | 2011-02-19 | 1 | -7/+4 |
| * | Driver/Darwin: Support -Wl, with -Xarch_. This doesn't work naturally because of | Daniel Dunbar | 2011-02-19 | 1 | -0/+4 |
| * | [analyzer] Use the new registration mechanism on the non-path-sensitive-check... | Argyrios Kyrtzidis | 2011-02-17 | 1 | -11/+0 |
| * | Triple::MinGW64 is deprecated and removed. We can use Triple::MinGW32 instead. | NAKAMURA Takumi | 2011-02-17 | 1 | -2/+1 |
| * | Fix whitespace. | NAKAMURA Takumi | 2011-02-17 | 1 | -3/+3 |
| * | [analyzer] Use the new registration mechanism on the IdempotentOperationChecker. | Argyrios Kyrtzidis | 2011-02-15 | 1 | -1/+0 |
| * | [analyzer] Use the new registration mechanism on some of the internal checks.... | Argyrios Kyrtzidis | 2011-02-15 | 1 | -0/+7 |