- Jun 01, 2010
-
-
Dan Gohman authored
llvm-svn: 105270
-
Kalle Raiskila authored
llvm-svn: 105269
-
John McCall authored
bring in the entire lookup table at once. Also, give ExternalSemaSource's vtable a home. This is important because otherwise any reference to it will cause RTTI to be emitted, and since clang is compiled with -fno-rtti, that RTTI will contain unresolved references (to ExternalASTSource's RTTI). So this change makes it possible to subclass ExternalSemaSource from projects compiled with RTTI, as long as the subclass's home is compiled with -fno-rtti. llvm-svn: 105268
-
Zhongxing Xu authored
llvm-svn: 105265
-
Zhongxing Xu authored
modification. llvm-svn: 105264
-
- May 31, 2010
-
-
Bill Wendling authored
llvm-svn: 105257
-
Ted Kremenek authored
Fixes <rdar://problem/8026215>. llvm-svn: 105256
-
Duncan Sands authored
the newly created allocas may be used by inlined calls, so these need to have their tail call flags cleared. Fixes PR7272. llvm-svn: 105255
-
Howard Hinnant authored
llvm-svn: 105254
-
Eric Christopher authored
llvm-svn: 105253
-
Chris Lattner authored
of isSimpleObjCMessageExpression checks the language, so change a dynamic check into an assert. isSimpleObjCMessageExpression is expensive, so only do it in the common case when it is likely to matter: when the [ of the postfix expr starts on a new line. This should avoid doing lookahead for every array expression. llvm-svn: 105229
-
Chris Lattner authored
that are too large. This causes the freebsd bootloader to be too large apparently. It's unclear if this should be an -Os or -Oz thing. Thoughts welcome. llvm-svn: 105228
-
Chris Lattner authored
llvm-svn: 105227
-
Chris Lattner authored
llvm-svn: 105226
-
Chris Lattner authored
llvm-svn: 105225
-
Charles Davis authored
preparation for an alternate mangler. llvm-svn: 105224
-
Dan Gohman authored
EOF is detected. llvm-svn: 105223
-
Douglas Gregor authored
llvm-svn: 105222
-
Douglas Gregor authored
a simple, quick check to determine whether the expression starting with '[' can only be an Objective-C message send. If so, don't parse it as an array subscript expression. This improves recovery for, e.g., [a method1] [a method2] so that we now produce t.m:10:13: error: expected ';' after expression [a method] ^ instead of some mess about expecting ']'. llvm-svn: 105221
-
Benjamin Kramer authored
llvm-svn: 105220
-
Chandler Carruth authored
virtual methods. Please review cdavis, should these methods even be virtual? llvm-svn: 105218
-
Nick Lewycky authored
first. Fixes PR7265. llvm-svn: 105206
-
Ted Kremenek authored
RegionStoreManager::RetrieveElement() that handles indexing into a larger scalar object to only consult the direct binding of a super region if it is a scalar. This isn't perfect yet, and a big FIXME is attached to the code. This causes the test case for PR 7218 now to pass. llvm-svn: 105195
-
Chris Lattner authored
llvm-svn: 105189
-
Chris Lattner authored
rdar://8042673 llvm-svn: 105188
-
rdar://8044135Chris Lattner authored
been processed, so they don't have to be tip-toed around. llvm-svn: 105182
-
Douglas Gregor authored
literal. Fixes <rdar://problem/8044135>. llvm-svn: 105181
-
Alexis Hunt authored
Parse will need to see these files because it needs to know how to parse attributes. The generated files are still placed in the appropriate directory so as to preserve layering. No functional change. llvm-svn: 105179
-
Douglas Gregor authored
lead to heartache. Fixes <rdar://problem/8044088>. llvm-svn: 105178
-
Daniel Dunbar authored
llvm-svn: 105177
-
Daniel Dunbar authored
llvm-svn: 105176
-
Douglas Gregor authored
called function itself is invalid (e.g., because of a semantic error referring to that declaration). Fixes <rdar://problem/8044142>. llvm-svn: 105175
-
- May 30, 2010
-
-
Howard Hinnant authored
llvm-svn: 105174
-
Nick Lewycky authored
invalid. llvm-svn: 105172
-
Anders Carlsson authored
llvm-svn: 105171
-
Nick Lewycky authored
'IsClangAttr' to match prevailing style in this file. Patch by Jon Mulder! llvm-svn: 105170
-
Oscar Fuentes authored
llvm-svn: 105168
-
Alexis Hunt authored
The macros required for DeclNodes use have changed to match the use of StmtNodes. The FooFirst enumerator constants have been named firstFoo to match usage elsewhere. llvm-svn: 105165
-
Alexis Hunt authored
The StmtNodes generator has been generalized to allow for the creation of DeclNodes tables as well, and another emitter was added for DeclContexts. llvm-svn: 105164
-
Anders Carlsson authored
llvm-svn: 105162
-