- Jun 17, 2010
-
-
Alexis Hunt authored
llvm-svn: 106188
-
- Jun 16, 2010
-
-
Rafael Espindola authored
(the last argument of the triple). llvm-svn: 106131
-
Daniel Dunbar authored
llvm-svn: 106113
-
- Jun 15, 2010
-
-
Daniel Dunbar authored
llvm-svn: 106039
-
-
Daniel Dunbar authored
problem; patch by Ed Schouten. llvm-svn: 105996
-
- Jun 14, 2010
-
-
Daniel Dunbar authored
llvm-svn: 105966
-
Daniel Dunbar authored
collect2 option that is passed by some projects (notably WebKit). llvm-svn: 105964
-
Daniel Dunbar authored
Also, fix a memory leak. llvm-svn: 105963
-
Daniel Dunbar authored
llvm-svn: 105958
-
Daniel Dunbar authored
llvm-svn: 105957
-
- Jun 12, 2010
-
-
Daniel Dunbar authored
llvm-svn: 105844
-
Daniel Dunbar authored
Driver: Add an explicit argument translation phase to the driver itself. We are going to need this to handle things like -Xassembler, -Xpreprocessor, and -Xlinker which we might have to introspect. llvm-svn: 105842
-
Daniel Dunbar authored
llvm-svn: 105841
-
Daniel Dunbar authored
llvm-svn: 105840
-
Daniel Dunbar authored
llvm-svn: 105839
-
Daniel Dunbar authored
llvm-svn: 105838
-
- Jun 11, 2010
-
-
Jeffrey Yasskin authored
candidates printed. We default to 'all'. At the moment, 'best' prints only the first 4 overloads, but we'll improve that over time. llvm-svn: 105815
-
- Jun 10, 2010
-
-
Daniel Dunbar authored
options. - This matches the intent of the .td files, and will simplify alias handling. - PR7321. llvm-svn: 105763
-
Daniel Dunbar authored
llvm-svn: 105762
-
Daniel Dunbar authored
llvm-svn: 105761
-
Daniel Dunbar authored
deriving them from the Arg type. llvm-svn: 105760
-
- Jun 09, 2010
-
-
Daniel Dunbar authored
unaliased", this isn't quite right yet. llvm-svn: 105747
-
Daniel Dunbar authored
options. - This matches the intent of the .td files, and will simplify alias handling. - PR7321. llvm-svn: 105744
-
Daniel Dunbar authored
they can be independent of the exact option that created them. llvm-svn: 105739
-
Daniel Dunbar authored
possible. llvm-svn: 105738
-
- Jun 08, 2010
-
-
Daniel Dunbar authored
Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles. llvm-svn: 105638
-
Daniel Dunbar authored
- This eliminates most dependencies on how Clang is installed relative to LLVM. llvm-svn: 105637
-
Jeffrey Yasskin authored
llvm-svn: 105597
-
Daniel Dunbar authored
- We actually pretend that we have two separate types for LLVM assembly/bitcode because we need to use the standard suffixes with LTO ('clang -O4 -c t.c' should generate 't.o'). It is now possible to do something like: $ clang -emit-llvm -S t.c -o t.ll ... assorted other compile flags ... $ clang -c t.ll -o t.o ... assorted other compile flags ... and expect that the output will be almost* identical to: $ clang -c t.c -o t.o ... assorted other compile flags ... because all the target settings (default CPU, target features, etc.) will all be initialized properly by the driver/frontend. *: This isn't perfect yet, because in practice we will end up running the optimization passes twice. It's possible to get something equivalent out with a well placed -mllvm -disable-llvm-optzns, but I'm still thinking about the cleanest way to solve this problem more generally. llvm-svn: 105584
-
- Jun 04, 2010
-
-
Daniel Dunbar authored
arguments after translation, instead of the -cc1 level arguments. llvm-svn: 105476
-
Daniel Dunbar authored
added as the last output step, instead of just hacking it into the link step. - Among other things, this fixes dSYM generation when using multiple -arch options. llvm-svn: 105475
-
Daniel Dunbar authored
llvm-svn: 105474
-
- May 28, 2010
-
-
Daniel Dunbar authored
llvm-svn: 104955
-
- May 27, 2010
-
-
Daniel Dunbar authored
llvm-svn: 104823
-
Daniel Dunbar authored
llvm-svn: 104815
-
- May 22, 2010
-
-
Daniel Dunbar authored
llvm-svn: 104432
-
Chandler Carruth authored
'-fasm' and explicitly map from that flag to -fgnu-keywords in the driver. Turn off the driver in the lexer test for this madness and add a test to the driver that the translation actually works. llvm-svn: 104428
-
Daniel Dunbar authored
short name of the tool in use, instead of the name of the action that created the command. The practical impact is we now get: clang: error: clang frontend command failed due to signal 6 (use -v to see invocation) instead of: clang: error: assembler command failed due to signal 6 (use -v to see invocation) when clang crashes on a job that uses the integrated assembler. llvm-svn: 104417
-
Daniel Dunbar authored
llvm-svn: 104416
-