aboutsummaryrefslogtreecommitdiff
path: root/Driver/clang.cpp
AgeCommit message (Expand)Author
2009-03-24Move <root>/Driver into <root>/tools/clang-cc.Daniel Dunbar
2009-03-23if the driver decides to run clang on a .s file, treat it as a .S file.Chris Lattner
2009-03-22PTHManager::Create():Ted Kremenek
2009-03-21Frontend: Handle empty input on stdin.Daniel Dunbar
2009-03-20ccc/Driver/clang-fe: Accept -fbuiltin, and forward -f[no-]builtin to clang.Daniel Dunbar
2009-03-20add a new LangOptions::GNUMode bit to distinguish between GNU99 and C99 etc.Chris Lattner
2009-03-20Preserve ordering between -include and -include-pth.Ted Kremenek
2009-03-20Implement "-include-pth" in low-level driver. This allows a PTH file to be usedTed Kremenek
2009-03-19Per Daniel's suggestion, remove default case from switch statement to makeTed Kremenek
2009-03-19Support langkind_cxx_pch when determining the language dialect.Ted Kremenek
2009-03-16simplify this code by reading the decision from LangOptions instead Chris Lattner
2009-03-15Don't accept '$' in identifiers in assembler-with-cpp mode.Daniel Dunbar
2009-03-14Don't run simplify lib calls with -ffreestanding (fix for alreadyDaniel Dunbar
2009-03-13wire up a new -fno-builtin option, make it control things like simplifylibcalls,Chris Lattner
2009-03-13introduce a new -fheinous-gnu-extensions flag that enables reallyChris Lattner
2009-03-13implement a new -fprint-source-range-info option, whichChris Lattner
2009-03-12Add Diagnostic files for Frontend and move a couple errors over.Daniel Dunbar
2009-03-11gnu++0x is definitely *not* the defaultGabor Greif
2009-03-10Limit the template instantiation depth to some user-configurable valueDouglas Gregor
2009-03-09move -g option down into rest of codegen sectionChris Lattner
2009-03-09move debug info generation flag into CompileOptions.Chris Lattner
2009-03-07Improve error messages on bad warning options.Sebastian Redl
2009-03-06Implement the machinery that can process TableGenerated warning options.Sebastian Redl
2009-03-06To the user, this is just a compiler of course, duh.Chris Lattner
2009-03-06clean up the OVERVIEW line in clang --help.Chris Lattner
2009-03-04Start making use of "pretty stack dumps" to get Chris Lattner
2009-03-04minor cleanupsChris Lattner
2009-03-03implement support for propagating *features* down to the code generatorChris Lattner
2009-03-02start wiring up support for target-specific -mfoo options like -msseChris Lattner
2009-03-02Rename lib/Driver (etc) to lib/Frontend in prep for the *actual*Daniel Dunbar
2009-02-28Adapt help string to what the code is doing (default is lang_gnu99). Thanks r...Gabor Greif
2009-02-26Add -emit-llvm-only option (generate LLVM IR & run passes, but discardDaniel Dunbar
2009-02-21Put compiler headers in <prefix>/lib/clang/1.0/include (vsDaniel Dunbar
2009-02-19fix a bug introduced in my previous patch: moving clang headers to theChris Lattner
2009-02-19always search for "builtin" headers at the end of the search path,Chris Lattner
2009-02-18add a bunch of timers for -E and other modes. This requiresChris Lattner
2009-02-18move llvm backend specific #includes into Backend.cpp instead of Clang.cppChris Lattner
2009-02-18indentation and formattingChris Lattner
2009-02-18clang will hopefully never support ratfor.Chris Lattner
2009-02-18wire up a minimal -ftime-report, which prints the optimizer/codegen Chris Lattner
2009-02-17Backend: Accept -mcpu and -mattr for use by TargetMachine.Daniel Dunbar
2009-02-17Static Analyzer driver/options (partial) cleanup:Ted Kremenek
2009-02-17add support for -fno-math-errno, and validate that it affects sema properly.Chris Lattner
2009-02-17remove extraneous .Chris Lattner
2009-02-16Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow.Daniel Dunbar
2009-02-15PR3589: Don't simplify libcalls with -ffreestanding.Daniel Dunbar
2009-02-14Add -ffreestanding to suppress the implicit declaration of library builtins l...Douglas Gregor
2009-02-06add support for -x c++-header, update comment.Chris Lattner
2009-02-06default diag::err_pp_file_not_found to mapping to fatal,Chris Lattner
2009-02-04Add -femit-all-decls codegen option.Daniel Dunbar