- Oct 01, 2008
-
-
Dan Gohman authored
llvm-svn: 56910
-
Ted Kremenek authored
llvm-svn: 56909
-
Dan Gohman authored
instruction, not after. This fixes some uses of free'd memory. llvm-svn: 56908
-
Daniel Dunbar authored
- So far this works fairly well for me for building applications using clang as a gcc substitute. If you are using ccc for a different purpose and this is a problem, speak up! Note you can also use CCC_NATIVE=0 to disable. - Also, turn CCC_ECHO off as default. - Also, pass through -Wl, to linker. llvm-svn: 56904
-
Daniel Dunbar authored
llvm-svn: 56902
-
Bill Wendling authored
llvm-svn: 56901
-
Bill Wendling authored
llvm-svn: 56900
-
Daniel Dunbar authored
collisions. - Provide CodeGenModule::CreateRuntimeFunction which guarantees that the function it creates will have the provided name in the final module. This allows the runtime to have its functions protected from declarations of the same name in the source code. - One could argue that this is a reason to abuse the llvm::Module namespace for dealing with function redeclarations. However, that approach seems conceptually flawed to me. This one also happens to be somewhat more efficient. No functionality change. llvm-svn: 56899
-
Dan Gohman authored
llvm-svn: 56896
-
Ted Kremenek authored
Use this updated interface when invalidating arguments passed by reference; the type of symbol is of the object passed by reference, not the reference itself. llvm-svn: 56894
-
Owen Anderson authored
llvm-svn: 56893
-
Ted Kremenek authored
llvm-svn: 56892
-
Ted Kremenek authored
llvm-svn: 56891
-
Daniel Dunbar authored
-mmacosx-version-min. One might anticipate that at some point I will just break down and go through the man page. That seems a little too obvious. llvm-svn: 56890
-
Owen Anderson authored
Fix a simple error in renumbering kill markaers, that took an inordinant amount of time to track down. llvm-svn: 56889
-
Bill Wendling authored
llvm-svn: 56888
-
Nuno Lopes authored
llvm-svn: 56887
-
- Sep 30, 2008
-
-
Bill Wendling authored
- Testcase for r56885. llvm-svn: 56886
-
Bill Wendling authored
`-fno-builtin' flag. Currently, it's used to replace "memset" with "_bzero" instead of "__bzero" on Darwin10+. This arguably violates the meaning of this flag, but is currently sufficient. The meaning of this flag should become more specific over time. llvm-svn: 56885
-
Daniel Dunbar authored
- More straightforward, e.g. -E should always imply action = 'preprocess' (I think). - Pass another option through for OS X. llvm-svn: 56884
-
Chris Lattner authored
llvm-svn: 56880
-
Chris Lattner authored
llvm-svn: 56879
-
Daniel Dunbar authored
llvm-svn: 56878
-
Dan Gohman authored
they'll be a little more visible. Also, update and reword them a bit. llvm-svn: 56877
-
Chris Lattner authored
llvm-svn: 56876
-
Chris Lattner authored
like "10.3.9" llvm-svn: 56873
-
Chris Lattner authored
clang -mmacosx-version-min=10.4.9 ... you'll end up with a target triple like "i686-apple-darwin8.9". llvm-svn: 56871
-
Nuno Lopes authored
llvm-svn: 56868
-
Dan Gohman authored
Completely eliminate the TopOrder std::vector. Instead, sort the AllNodes list in place. This also eliminates the need to call AllNodes.size(), a linear-time operation, before performing the sort. Also, eliminate the Sources temporary std::vector, since it essentially duplicates the sorted result as it is being built. This also changes the direction of the topological sort from bottom-up to top-down. The AllNodes list starts out in roughly top-down order, so this reduces the amount of reordering needed. Top-down is also more convenient for Legalize, and ISel needed only minor adjustments. llvm-svn: 56867
-
Nuno Lopes authored
llvm-svn: 56866
-
Daniel Dunbar authored
llvm-svn: 56864
-
Ted Kremenek authored
llvm-svn: 56863
-
Ted Kremenek authored
llvm-svn: 56860
-
Daniel Dunbar authored
llvm-svn: 56859
-
Ted Kremenek authored
llvm-svn: 56858
-
Ted Kremenek authored
Do not save the radar classification to the config file. llvm-svn: 56856
-
Ted Kremenek authored
Added "Classification" field to Radar filing. Modified FileRadar.scpt to take the classification as an argument. llvm-svn: 56854
-
Daniel Dunbar authored
Pass through some more Mac OS X linker options. llvm-svn: 56853
-
Ted Kremenek authored
llvm-svn: 56852
-
Ted Kremenek authored
of the details of HTML rendering of form parameters, and also us with the ability to delegate other actions (such as in the filling in of default values) to specific parameter objects. llvm-svn: 56851
-