- Sep 13, 2010
-
-
Devang Patel authored
Handle %test_debuginfo on a RUN command line. This set up now allows one to write small test cases to check debug info. e.g. ; RUN: %clang -O0 -g %s -c -o %t.o ; RUN: %clang %t.o -o %t.out ; RUN: %test_debuginfo %s %t.out define i32 @f1(i32 %i) nounwind ssp { ; DEBUGGER: break f1 ; DEBUGGER: r ; DEBUGGER: p i ; CHECK: $1 = 42 entry: %i.addr = alloca i32, align 4 ... ... } It is also possible now to write test cases in c/c++. The plan is to store these debug info testcases in a separate place. llvm-svn: 113780
-
Argyrios Kyrtzidis authored
When applying 'delete' on a pointer-to-array type match GCC and EDG behavior and treat it as 'delete[]'. Also offer a fix-it hint adding '[]'. llvm-svn: 113778
-
Fariborz Jahanian authored
their 'isa' field scanned regardless. llvm-svn: 113749
-
Argyrios Kyrtzidis authored
The canonical FunctionTemplateDecl contains the specializations but we cannot use getCanonicalDecl on Template because it may still be initializing. Write and read it from PCH. Fixes http://llvm.org/PR8134 llvm-svn: 113744
-
Abramo Bagnara authored
llvm-svn: 113740
-
Abramo Bagnara authored
llvm-svn: 113739
-
- Sep 12, 2010
-
-
Douglas Gregor authored
function fails due to ambiguities in partial ordering of function templates. Fixes PR8033. llvm-svn: 113725
-
Douglas Gregor authored
sequences for two conversion functions when in fact we are in the text of initialization by a user-defined conversion sequences. Fixes PR8034. llvm-svn: 113724
-
Douglas Gregor authored
members) with function type. Fixes PR8047. llvm-svn: 113723
-
Douglas Gregor authored
they were instantiated from a template. In template metaprogramming, stuff happens. Fixes PR8065. llvm-svn: 113722
-
Douglas Gregor authored
error to a warning if we're in a case that would be allowed in C++0x. This "fixes" PR8084 by making Clang accept more code than GCC and (non-strict) EDG do. Also, add the missing test case for the C++0x semantics, which should have been in r113717. llvm-svn: 113718
-
Francois Pichet authored
Assigning an underlying integral type to an enum forward declaration will come in a next patch. llvm-svn: 113716
-
Douglas Gregor authored
be a semantic requirement that a built-in overloaded operator is not added to the overload set of there is already a user-defined overloaded operator with the same parameter types. Fixes PR8087. llvm-svn: 113713
-
Douglas Gregor authored
type. Fixes PR8089 in a slightly different way than had been suggested. llvm-svn: 113711
-
Douglas Gregor authored
declarations in potentially-evaluated subexpressions, about recursion. Fixes the release-mode self-host failure I introduced in r113700. llvm-svn: 113708
-
- Sep 11, 2010
-
-
Francois Pichet authored
llvm-svn: 113702
-
Douglas Gregor authored
used in the default function argument as "used". Instead, when we actually use the default argument, make another pass over the expression to mark any used declarations as "used" at that point. This addresses two kinds of related problems: 1) We were marking some declarations "used" that shouldn't be, because we were marking them too eagerly. 2) We were failing to mark some declarations as "used" when we should, if the first time it was instantiated happened to be an unevaluated context, we wouldn't mark them again at a later point. I've also added a potentially-handy visitor class template EvaluatedExprVisitor, which only visits the potentially-evaluated subexpressions of an expression. I bet this would have been useful for noexcept... Fixes PR5810 and PR8127. llvm-svn: 113700
-
Douglas Gregor authored
preambles end up leaving the precompiled preambles around. This is by design, since we do minimal cleanup during crash recovery. However, it's unfortunate for testing, so introduce a hook that allows these two tests to put the precompiled preamble somewhere where we can delete them after testing. llvm-svn: 113698
-
Douglas Gregor authored
Windows GetTempPath() function, and be sure to create the directory in which the precompiled preamble will reside before creating the temporary file itself. llvm-svn: 113695
-
Fariborz Jahanian authored
information when imported variable is used more than once. Originally though to be a bug in importing block varibles. Fixes radar 8417746. llvm-svn: 113675
-
Sebastian Redl authored
llvm-svn: 113664
-
John McCall authored
llvm-svn: 113663
-
Sebastian Redl authored
llvm-svn: 113650
-
Douglas Gregor authored
emitting a #pragma, whenever one is needed. Fixes <rdar://problem/8417307>. llvm-svn: 113648
-
- Sep 10, 2010
-
-
Sebastian Redl authored
llvm-svn: 113642
-
Sebastian Redl authored
llvm-svn: 113630
-
Sebastian Redl authored
llvm-svn: 113628
-
Sebastian Redl authored
llvm-svn: 113625
-
Sebastian Redl authored
llvm-svn: 113624
-
Ted Kremenek authored
Polish diagnostics for null dereferences via ObjC ivar accesses. Finishes up <rdar://problem/6352035>. llvm-svn: 113612
-
Fariborz Jahanian authored
reference object to a c++ member function. fixes radar 8409336. llvm-svn: 113602
-
Douglas Gregor authored
the call argument is a string literal. Fixes <rdar://problem/8413477>. llvm-svn: 113580
-
-
Tom Care authored
Added AnalyzerStatsChecker, a path sensitive check that reports visitation statistics about analysis. Running clang with the -analyzer-stats flag will emit warnings containing the information. We can then run a postanalysis script to take this data and give useful information about how much the analyzer missed in a project. llvm-svn: 113568
-
Douglas Gregor authored
address of a label (GNU extension). llvm-svn: 113564
-
Douglas Gregor authored
llvm-svn: 113560
-
Douglas Gregor authored
and array references). llvm-svn: 113556
-
Fariborz Jahanian authored
follows objective's semantics and is not overload'able with an assignment operator. Fixes a crash and a missing diagnostics. Radar 8379892. llvm-svn: 113555
-
Ted Kremenek authored
Fixes: <rdar://problem/8409480> “warning: Pass-by-value argument in function call is undefined” message can be improved llvm-svn: 113554
-
Douglas Gregor authored
spelled (#pragma, _Pragma, __pragma). In -E mode, use that information to add appropriate newlines when translating _Pragma and __pragma into #pragma, like GCC does. Fixes <rdar://problem/8412013>. llvm-svn: 113553
-