- Oct 12, 2010
-
-
Nick Lewycky authored
llvm-svn: 116312
-
Douglas Gregor authored
Manuel Klimek! Fixes PR7715. llvm-svn: 116311
-
Bob Wilson authored
"-mattr=+vfp3" is specified. However, this will not work for hardware that only supports 16 registers. Add a new flag to support -"mattr=+vfp3,+d16". Patch by Jan Voung! llvm-svn: 116310
-
Johnny Chen authored
llvm-svn: 116309
-
Duncan Sands authored
llvm-svn: 116300
-
John McCall authored
require them to have complete types. llvm-svn: 116297
-
Eric Christopher authored
address that we've looked through. Fixes compilation problems in tramp3d from earlier patch. llvm-svn: 116296
-
Greg Clayton authored
function. It will inspect NAME and do the following: - if the name contains '(' or starts with "-[" or "+[" then a full name search will happen to match full function names with args (C++ demangled names) or full objective C method prototypes. - if the name contains "::" and no '(', then it is assumed to be a qualified function name that is in a namespace or class. For "foo::bar::baz" we will search for any functions with the basename or method name of "baz", then filter the results to only those that contain "foo::bar::baz". This allows setting breakpoint on C++ functions and methods without having to fully qualify all of the types that would appear in C++ mangled names. - if the name contains ":" (not "::"), then NAME is assumed to be an ObjC selector. _ otherwise, we assume just a plain function basename. Now that "--name" is our "auto" mode, I introduced the new "--basename" option ("breakpoint set --basename NAME") to allow for function names that aren't methods or selectors, just basenames. This can also be used to ignore C++ namespaces and class hierarchies for class methods. Fixed clang enumeration promotion types to be correct. llvm-svn: 116293
-
John McCall authored
llvm-svn: 116292
-
Eric Christopher authored
Made necessary edits to configure.ac and regenerated. llvm-svn: 116291
-
Greg Clayton authored
being chopped up correctly). The DWARF plug-in also keeps a map of the ObjC class names to selectors for easy parsing of all class selectors when we parse the class type. llvm-svn: 116290
-
John McCall authored
llvm-svn: 116289
-
Chris Lattner authored
Patch by the "pax team" llvm-svn: 116288
-
John McCall authored
llvm-svn: 116287
-
Francois Pichet authored
The problem was that text files were open in text mode and Microsoft implementation of fread and write will try to do nasty line-feed conversion which make the line position no longer valid. The fix is to read and write files in binary mode. llvm-svn: 116286
-
Douglas Gregor authored
diagnostics produced by the driver itself. Previously, we were allowing these to either be dropped or to slip through to stderr. Fixes <rdar://problem/7595339>. llvm-svn: 116285
-
Eric Christopher authored
llvm-svn: 116284
-
Cameron Esfahani authored
llvm-svn: 116283
-
Cameron Esfahani authored
llvm-svn: 116282
-
John McCall authored
i.e. expressions with an internally-convenient type which should not be appearing in generally valid, complete ASTs. llvm-svn: 116281
-
Dan Gohman authored
llvm-svn: 116280
-
Dan Gohman authored
llvm-svn: 116279
-
Dan Gohman authored
llvm-svn: 116278
-
Dan Gohman authored
llvm-svn: 116277
-
Dan Gohman authored
llvm-svn: 116276
-
Johnny Chen authored
function to get the line number to break on during setUp(). llvm-svn: 116275
-
Francois Pichet authored
Disable warning C4267 for MSVC. Otherwise it generate literally thousands of warnings when targeting x64. The warning occurs because int is 32 bit but size_t is 64 bit on Win64. llvm-svn: 116274
-
Fariborz Jahanian authored
for ivars to be 0. Fixes pr8353. llvm-svn: 116273
-
Dan Gohman authored
llvm-svn: 116272
-
Jim Ingham authored
llvm-svn: 116271
-
Johnny Chen authored
within a file. This is to be used within the test case to avoid hardcoded line number. array_types/TestArrayTypes.py is modified first to use this pattern. Other test modules to follow. rdar://problem/8537816 Testsuite: don't set breakpoints by exact file & line number llvm-svn: 116270
-
Daniel Dunbar authored
off the extra parts of the $URL$ SVN keyword. llvm-svn: 116269
-
Daniel Dunbar authored
llvm-svn: 116268
-
Evan Cheng authored
llvm-svn: 116266
-
Dan Gohman authored
llvm-svn: 116264
-
Daniel Dunbar authored
are almost never needed, so the warning isn't very useful. llvm-svn: 116263
-
Dan Gohman authored
stop searching when it has found a match. llvm-svn: 116262
-
Douglas Gregor authored
llvm-svn: 116261
-
Douglas Gregor authored
on the presence of a 'clang' executable. Simplify CIndexer::getClangResourcesPath() a bit. Patch up the CMake makefiles to install headers into two locations in the build tree, for those silly cases where 'clang' will end up looking into the wrong build directory for headers. llvm-svn: 116260
-
Jim Grosbach authored
register operand. llvm-svn: 116259
-