- Oct 05, 2009
-
-
Eric Christopher authored
llvm-svn: 83327
-
Fariborz Jahanian authored
extension class's protocol list so its AST is complete. 2) Because of this no need to issue warning on unimplemeted methods coming from the extended class protocols because warning is issued when class definition is seen. llvm-svn: 83326
-
Chris Lattner authored
llvm-svn: 83325
-
Douglas Gregor authored
assume that PCH files from different Clang revisions are not compatible. Addresses <rdar://problem/7266572>. llvm-svn: 83323
-
Fariborz Jahanian authored
<rdar://problem/7269631> Protocols on class extensions don't work llvm-svn: 83322
-
Douglas Gregor authored
branch/revision information. Use that information in the driver, rather than one-off branch/revision computation. llvm-svn: 83321
-
Douglas Gregor authored
llvm-svn: 83319
-
Steve Naroff authored
- Make sure CHECK: lines in test case match the expected output. llvm-svn: 83316
-
Benjamin Kramer authored
llvm-svn: 83303
-
Rafael Espindola authored
its own binary-relative headers. Useful when using clang's preprocessor with gcc. llvm-svn: 83302
-
- Oct 03, 2009
-
-
Anders Carlsson authored
llvm-svn: 83272
-
Anders Carlsson authored
llvm-svn: 83271
-
Anders Carlsson authored
llvm-svn: 83268
-
Anders Carlsson authored
llvm-svn: 83267
-
Anders Carlsson authored
llvm-svn: 83266
-
Anders Carlsson authored
llvm-svn: 83265
-
Anders Carlsson authored
llvm-svn: 83264
-
Anders Carlsson authored
llvm-svn: 83263
-
Anders Carlsson authored
llvm-svn: 83262
-
- Oct 02, 2009
-
-
Benjamin Kramer authored
llvm-svn: 83246
-
Benjamin Kramer authored
llvm-svn: 83244
-
Anders Carlsson authored
llvm-svn: 83235
-
Mike Stump authored
llvm-svn: 83232
-
Mike Stump authored
llvm-svn: 83231
-
Anders Carlsson authored
When building constant structs, check if the resulting LLVM struct will be bigger than the record layout size and use a packed struct if that's the case. Fixes PR5108. llvm-svn: 83230
-
Douglas Gregor authored
explicit instantiation. Also, tighten up reference-count checking to help catch these issues earlier. Fixes PR5069. llvm-svn: 83225
-
Steve Naroff authored
- Add ObjCInterfaceDecl::lookupPrivateInstanceMethod(). - Convert clients. No functionality change - One less method in Sema:-) llvm-svn: 83224
-
Douglas Gregor authored
of the flow-control checks for falling off the end of a function, since the return type may instantiate to void. Similarly, if a return statement has an expression and the return type of the function is void, don't complain if the expression is type-dependent, since that type could instantiate to void. Fixes PR5071. llvm-svn: 83222
-
Mike Stump authored
llvm-svn: 83221
-
Fariborz Jahanian authored
deciding const of null pointer conversion. Fixes PR5086. llvm-svn: 83217
-
- Oct 01, 2009
-
-
Douglas Gregor authored
functions when they are explicitly declared, e.g., via a function template specialization or explicit template instantiation declaration. Don't try to synthesize bodies for the special member functions in this case; rather, check whether we have an implicit declaration and, if so, synthesize the appropriate function body. Fixes PR5084. llvm-svn: 83212
-
Fariborz Jahanian authored
user-defined type conversion. Fixes PR5040. llvm-svn: 83211
-
Fariborz Jahanian authored
Patch by Rafael Espindola. llvm-svn: 83209
-
Ted Kremenek authored
llvm-svn: 83204
-
Rafael Espindola authored
-fno-exceptions in C++ code. We used to always define __EXCEPTIONS in C++. llvm-svn: 83199
-
Douglas Gregor authored
llvm-svn: 83195
-
Steve Naroff authored
llvm-svn: 83186
-
Mike Stump authored
BlockDeclRefDecls. llvm-svn: 83185
-
John McCall authored
apparently because using directives aren't quite working correctly. llvm-svn: 83184
-
Douglas Gregor authored
type is a template-id (e.g., basic_ostream<CharT, Traits>) and the argument type is a class that has a derived class matching the parameter type. Previously, we were giving up on template argument deduction too early. llvm-svn: 83177
-