- Nov 13, 2007
-
-
Owen Anderson authored
interference. llvm-svn: 44064
-
Owen Anderson authored
llvm-svn: 44063
-
Fariborz Jahanian authored
llvm-svn: 44062
-
Owen Anderson authored
Make my previous patch actually do what it was intended to do. llvm-svn: 44061
-
Fariborz Jahanian authored
llvm-svn: 44060
-
Ted Kremenek authored
invert this case (i.e., not flag a warning) in the future. llvm-svn: 44059
-
Ted Kremenek authored
are compared against builtins such as __builtin_inf. llvm-svn: 44058
-
Dale Johannesen authored
llvm-svn: 44057
-
Dale Johannesen authored
to use different mappings for EH and debug info; no functional change yet. Fix warning in X86CodeEmitter. llvm-svn: 44056
-
Fariborz Jahanian authored
llvm-svn: 44055
-
Ted Kremenek authored
llvm-svn: 44054
-
Ted Kremenek authored
floating point comparisons using == or != an opt-in rather than a default warning. Updated test case to use -Wfloat-equal. llvm-svn: 44053
-
Chris Lattner authored
llvm-svn: 44051
-
Chris Lattner authored
Cedric Venet. llvm-svn: 44050
-
Chris Lattner authored
constants and initializers. Patch by Sanghyeon Seo, thanks! llvm-svn: 44049
-
Evan Cheng authored
llvm-svn: 44048
-
Steve Naroff authored
Teach Sema::CheckCompareOperands() about "void *" (C99 6.5.9p2) llvm-svn: 44047
-
Bill Wendling authored
llvm-svn: 44045
-
Chris Lattner authored
and simplifycfg in the rare cases when it is needed. llvm-svn: 44044
-
Chris Lattner authored
Kelly Wilson, thanks! llvm-svn: 44043
-
Steve Naroff authored
Tune the lookup logic in Sema::ActOnInstanceMessage() to handle private methods (declared within the implementation). llvm-svn: 44041
-
Steve Naroff authored
Minor indenting changes and removed a level of casting in getClassInterface(); llvm-svn: 44039
-
Fariborz Jahanian authored
llvm-svn: 44038
-
Bill Wendling authored
adjustment fields, and an optional flag. If there is a "dynamic_stackalloc" in the code, make sure that it's bracketed by CALLSEQ_START and CALLSEQ_END. If not, then there is the potential for the stack to be changed while the stack's being used by another instruction (like a call). This can only result in tears... llvm-svn: 44037
-
Steve Naroff authored
Fix Sema::CheckAssignmentConstraints() to operate on the canonical, unqualified type. llvm-svn: 44036
-
Ted Kremenek authored
the new serialization API. llvm-svn: 44035
-
Ted Kremenek authored
llvm-svn: 44034
-
Ted Kremenek authored
understand, and batched the emission owned subobjects (using BatchEmitOwnedPtr) to get a smaller output bitcode size. llvm-svn: 44033
-
Ted Kremenek authored
calls to BatchEmitOwnedPtrs and BatchReadOwnedPtrs. llvm-svn: 44032
-
Bill Wendling authored
llvm-svn: 44031
-
Devang Patel authored
llvm-svn: 44030
-
Anton Korobeynikov authored
some regressions on ppc nightly tests. llvm-svn: 44029
-
- Nov 12, 2007
-
-
Fariborz Jahanian authored
llvm-svn: 44028
-
Steve Naroff authored
Add category method definitions incrementally, removing a FIXME (like we do for class implementations). llvm-svn: 44027
-
Fariborz Jahanian authored
llvm-svn: 44026
-
Fariborz Jahanian authored
llvm-svn: 44025
-
Bruno Cardoso Lopes authored
Fixed some AsmPrinter issues Added GLOBAL_OFFSET_TABLE Node handle. llvm-svn: 44024
-
Steve Naroff authored
Fix regression to Sema::ObjcActOnStartOfMethodDef()...need to initialize InvalidType field to false. llvm-svn: 44023
-
Steve Naroff authored
Add an error diagnostic to Parse::ParseObjCMessageExpression(). This now exposes the following bug... ******************** TEST 'Sema/message.m' FAILED! ******************** Command: clang -fsyntax-only -verify Sema/message.m Output: Errors seen but not expected: Line 9: invalid receiver to message expression ******************** TEST 'Sema/message.m' FAILED! ******************** As far as I can tell, all messages to method agruments fail. The method arguments are built by Sema::ObjcActOnStartOfMethodDef(). llvm-svn: 44022
-
Ted Kremenek authored
clients of the Deserializer to read the pointer ID before they are ready to deserialize the object (which can mean registering a pointer reference with the backpatcher). Changed some methods that took an argument "SerializedPtrID" to "const SerializedPtrID&" (pass-by-reference). This is to accommodate a future revision of SerializedPtrID where it may be much fatter than an unsigned integer. llvm-svn: 44021
-