- Jul 09, 2012
-
-
Alexey Samsonov authored
llvm-svn: 159933
-
NAKAMURA Takumi authored
[CMake] Get rid of unconditional dependency to ClangDiagnosticCommon. Only clangBasic and clangASTMatchers need it. llvm-svn: 159931
-
Filipe Cabecinhas authored
llvm-svn: 159930
-
Filipe Cabecinhas authored
llvm-svn: 159929
-
Alexey Samsonov authored
llvm-svn: 159928
-
Filipe Cabecinhas authored
llvm-svn: 159927
-
Arnaud A. de Grandmaison authored
Patch by David Röthlisberger llvm-svn: 159926
-
Alexander Kornienko authored
llvm-svn: 159925
-
Jason Molenda authored
a bit -- we're creating the UnwindPlan here, we can set the register set to whatever is convenient for us, no need to handle different register sets. A handful of small comment fixes I noticed while reading through the code. llvm-svn: 159924
-
Manuel Klimek authored
Patch contributed by David Roethlisberger. llvm-svn: 159923
-
Richard Smith authored
* When substituting a reference to a non-type template parameter pack where the corresponding argument is a pack expansion, transform into an expression which contains an unexpanded parameter pack rather than into an expression which contains a pack expansion. This causes the SubstNonTypeTemplateParmExpr to be inside the PackExpansionExpr, rather than outside, so the expression still looks like a pack expansion and can be deduced. * Teach MarkUsedTemplateParameters that we can deduce a reference to a template parameter if it's wrapped in a SubstNonTypeTemplateParmExpr (such nodes are added during alias template substitution). llvm-svn: 159922
-
Howard Hinnant authored
llvm-svn: 159921
-
Howard Hinnant authored
Change emplace for vector and deque to create the temporary (when necessary) before any changes to the container are made. Nikolay Ivchenkov deserves the credit for pushing this problem and the solution for it. llvm-svn: 159918
-
- Jul 08, 2012
-
-
Richard Smith authored
llvm-svn: 159917
-
Benjamin Kramer authored
Remove some trivial copy ctors so the classes become trivially copyable and get the optimized SmallVector implementation. llvm-svn: 159916
-
Alexander Potapenko authored
llvm-svn: 159915
-
Benjamin Kramer authored
llvm-svn: 159914
-
Benjamin Kramer authored
llvm-svn: 159913
-
NAKAMURA Takumi authored
I'll try to increase stack size later. llvm-svn: 159912
-
Simon Atanasyan authored
MIPS: Range check __builtin_mips_wrdsp / __builtin_mips_rddsp arguments against the upper/lower values. llvm-svn: 159911
-
Simon Atanasyan authored
llvm-svn: 159910
-
Richard Smith authored
expression, skip over any SubstNonTypeTemplateParmExprs which alias templates may have inserted before checking for a DeclRefExpr referring to a non-type template parameter declaration. llvm-svn: 159909
-
Richard Smith authored
llvm-svn: 159908
-
Richard Smith authored
-ftemplate-depth limit. There are various ways to get an infinite (or merely huge) stack of substitutions with no intervening instantiations. This is also consistent with gcc's behavior. llvm-svn: 159907
-
NAKAMURA Takumi authored
ASTMatchers/CMakeLists.txt: Add dependencies to generated headers, or "make clean; make ASTMatchers" would fail. llvm-svn: 159906
-
Richard Smith authored
misreduction of PR13290. llvm-svn: 159905
-
Richard Smith authored
multidimensional array of class type. Also, preserve zero-initialization when evaluating an initializer list for an array, in case the initializers refer to later elements (which have preceding zero-initialization). llvm-svn: 159904
-
- Jul 07, 2012
-
-
Howard Hinnant authored
llvm-svn: 159902
-
Howard Hinnant authored
Apply constexpr to the mutex constructor. As a conforming extension, apply constexpr to the condition_variable constructor. These are important because it enables the compiler to construct these types at compile time, even though the object will be non-const. Since they are constructed at compile time, there is no chance of a data race before they are constructed. llvm-svn: 159901
-
Howard Hinnant authored
llvm-svn: 159899
-
NAKAMURA Takumi authored
llvm-svn: 159898
-
Benjamin Kramer authored
For some reason GCC decided to call the feature rdrnd instead of rdrand, which requires translating it for LLVM. llvm-svn: 159897
-
Richard Smith authored
initializer list. Patch by Olivier Goffart, with extra testcases by Meador Inge and Daniel Lunow. llvm-svn: 159896
-
Richard Smith authored
which will appear in the vtable as used, not just those ones which were declared within the class itself. Fixes an issue reported as comment#3 in PR12763 -- we sometimes assert in codegen if we try to emit a reference to a function declaration which we've not marked as referenced. This also matches gcc's observed behavior. llvm-svn: 159895
-
John McCall authored
in the ABI arrangement, and leave a hook behind so that we can easily tweak CCs on platforms that use different CCs by default for C++ instance methods. llvm-svn: 159894
-
Ted Kremenek authored
Enhance 'diagtool list-warnings' to report number of diagnostics covered directly under -Wpedantic, and enhance warning-flags.c test to test that this set does not grow. llvm-svn: 159893
-
Ted Kremenek authored
- Split pedantic driver flag test into separate test file, and XFAIL on cygwin,mingw32 - Fix bug in tablegen logic where a missing '{' caused errors to be included in -Wpedantic. llvm-svn: 159892
-
Andrew Trick authored
subtarget CPU descriptions and support new features of MachineScheduler. MachineModel has three categories of data: 1) Basic properties for coarse grained instruction cost model. 2) Scheduler Read/Write resources for simple per-opcode and operand cost model (TBD). 3) Instruction itineraties for detailed per-cycle reservation tables. These will all live side-by-side. Any subtarget can use any combination of them. Instruction itineraries will not change in the near term. In the long run, I expect them to only be relevant for in-order VLIW machines that have complex contraints and require a precise scheduling/bundling model. Once itineraries are only actively used by VLIW-ish targets, they could be replaced by something more appropriate for those targets. This tablegen backend rewrite sets things up for introducing MachineModel type #2: per opcode/operand cost model. llvm-svn: 159891
-
Andrew Trick authored
llvm-svn: 159890
-
Andrew Trick authored
llvm-svn: 159889
-