- Nov 04, 2008
-
-
Chris Lattner authored
llvm-svn: 58704
-
Sebastian Redl authored
Some cleanup of the cast checkers. Don't canonicalize types when not needed. Use distinct diagnostics for distinct errors. llvm-svn: 58700
-
Douglas Gregor authored
llvm-svn: 58699
-
Douglas Gregor authored
Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr llvm-svn: 58698
-
Douglas Gregor authored
Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary expression. Remove CXXThis from PredefinedExpr llvm-svn: 58695
-
Douglas Gregor authored
llvm-svn: 58692
-
Douglas Gregor authored
Diagnose use of 'this' in a C++ default argument. Thanks to Eli for correcting my bogus assertion about it already being handled llvm-svn: 58691
-
Sebastian Redl authored
llvm-svn: 58689
-
Anders Carlsson authored
llvm-svn: 58685
-
Anders Carlsson authored
llvm-svn: 58681
-
Anders Carlsson authored
llvm-svn: 58680
-
Ted Kremenek authored
llvm-svn: 58672
-
Ted Kremenek authored
llvm-svn: 58666
-
Ted Kremenek authored
llvm-svn: 58663
-
Ted Kremenek authored
llvm-svn: 58658
-
Ted Kremenek authored
llvm-svn: 58657
-
Steve Naroff authored
llvm-svn: 58656
-
rdar://problem/6339636Steve Naroff authored
Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 < FileIDs.size() && "Invalid FileID!", file c:\cygwin\home\Administrator\llvm\tools\clang\include\clang/Basic/SourceManager.h, line 513 llvm-svn: 58654
-
Ted Kremenek authored
Fix Plist output. llvm-svn: 58652
-
- Nov 03, 2008
-
-
Douglas Gregor authored
llvm-svn: 58649
-
Ted Kremenek authored
llvm-svn: 58647
-
Ted Kremenek authored
llvm-svn: 58646
-
Douglas Gregor authored
X x(5, 7); llvm-svn: 58641
-
Daniel Dunbar authored
Eric C, thanks! llvm-svn: 58634
-
Douglas Gregor authored
cope with the case where a user-defined conversion is actually a copy construction, and therefore can be compared against other standard conversion sequences. While I called this a hack before, now I'm convinced that it's the right way to go. Compare overloads based on derived-to-base conversions that invoke copy constructors. Suppress user-defined conversions when attempting to call a user-defined conversion. llvm-svn: 58629
-
Douglas Gregor authored
when appropriate. Conversions for class types now make use of copy constructors. I've replaced the egregious hack allowing class-to-class conversions with a slightly less egregious hack calling these conversions standard conversions (for overloading reasons). llvm-svn: 58622
-
Douglas Gregor authored
llvm-svn: 58613
-
Douglas Gregor authored
reference-collapsing. Implement diagnostic for formation of a reference to cv void. Drop cv-qualifiers added to a reference type when the reference type comes from a typedef. llvm-svn: 58612
-
Douglas Gregor authored
Connect ASTContext to TargetInfo when determining the size_t, ptrdiff_t, and wchar_t types. Fixes recent breakage on Linux. llvm-svn: 58609
-
rdar://problem/6336774Steve Naroff authored
Fix <rdar://problem/6336774> clang block rewriter: Assertion failed: Offset+NumBytes <= size() && "Invalid region to erase!", file c:\cygwin\home\Administrator\llvm\to ols\clang\include\clang/Rewrite/RewriteRope.h, line 219. llvm-svn: 58607
-
Chris Lattner authored
the designator corresponding to it, otherwise Sema and later parsing will get confused. llvm-svn: 58603
-
Chris Lattner authored
llvm-svn: 58602
-
Ted Kremenek authored
Simplify the functions HtmlEsape and ShellEscape. We now properly print out the following command line in the HTML output: scan-build gcc -x c /dev/null -c -Dfoo='"string abc"' Fixes <rdar://problem/6338651> llvm-svn: 58600
-
Zhongxing Xu authored
llvm-svn: 58597
-
Zhongxing Xu authored
llvm-svn: 58596
-
Zhongxing Xu authored
- Prepare AnonPointeeRegioin for later use. llvm-svn: 58595
-
- Nov 02, 2008
-
-
Sebastian Redl authored
llvm-svn: 58570
-
Cedric Venet authored
Add header files to CMake build solution. It use globing so it doesn't need to be manually maintained, but it won't automatically detect a new header. I think this is a good compromise for the header files, since there presence in the solution is just an help for the user. Moreover, a new header is often introduced with a new cpp source file which need a makefile change, which will regenerate the solution and detect the new header. llvm-svn: 58566
-
Zhongxing Xu authored
llvm-svn: 58565
-
Zhongxing Xu authored
sets the whole struct to Unknown. Then we cannot assume the V passed to BindStruct() is always a CompoundVal. When it is an UnknownVal, we call BindStructToVal(UnknownVal). 2. Change the signature of InitializeStructToUndefined() to BindStructToVal() to reuse the code. llvm-svn: 58564
-