- Oct 02, 2010
-
-
Chris Lattner authored
For example, on: #include <emmintrin.h> int foo(int N) { __m128i white2; white2 = _mm_slli_si128(white2, N); return 0; } we used to get: fatal error: error in backend: Cannot yet select: intrinsic %llvm.x86.sse2.psll.dq now we get: /Users/sabre/t.c:4:11: error: argument to '__builtin_ia32_pslldqi128' must be a constant integer white2 = _mm_slli_si128(white2, N); ^~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /Users/sabre/t.c:1: /Volumes/Projects/cvs/llvm/Debug+Asserts/lib/clang/2.9/include/emmintrin.h:781:13: note: instantiated from: ((__m128i)__builtin_ia32_pslldqi128((__m128i)(VEC), (IMM)*8)) ^ ~~~~~~~ 1 error generated. llvm-svn: 115374
-
Chris Lattner authored
are required to be ICE's. No clients of this new functionality yet! llvm-svn: 115366
-
Chris Lattner authored
llvm-svn: 115361
-
Gabor Greif authored
llvm-svn: 115356
-
Gabor Greif authored
a helper function (AdjustAPSInt) and use that for adjusting the high bounds of case ranges before APSInt comparisons. Fixes http://llvm.org/bugs/show_bug.cgi?id=8135 Some minor refacorings while I am here. llvm-svn: 115355
-
- Oct 01, 2010
-
-
-
Francois Pichet authored
Better diagnostic for superfluous scope specifier inside a class definition for member functions. + Fixit. Example: class A { void A::foo(); //warning: extra qualification on member 'foo' }; llvm-svn: 115347
-
Douglas Gregor authored
and protocol expressions. Fixes <rdar://problem/7833565>. llvm-svn: 115346
-
Tom Care authored
UnreachableCodeChecker does not need to inherit from CheckerVisitor, only Checker. It does not use any AST Stmt hooks, only VisitEndAnalysis. llvm-svn: 115345
-
Douglas Gregor authored
we're missing the corresponding changes in the LLVM repository. llvm-svn: 115340
-
Douglas Gregor authored
member function or an Objective-C method, which other member functions/methods it overrides. llvm-svn: 115338
-
Sebastian Redl authored
llvm-svn: 115336
-
Sebastian Redl authored
llvm-svn: 115334
-
Chris Lattner authored
llvm-svn: 115333
-
Douglas Gregor authored
auto f(int) -> int from Daniel Wallin! (With a few minor bug fixes from me). llvm-svn: 115322
-
Chris Lattner authored
one results in an obscure error from the backend that doesn't make sense. Capture this information in the .def files for builtins with a new "I" modifier letter indicating the an argument needs to be an ICE. Nothing uses this yet, but sema will eventually enforce this (eliminating some special cases from semachecking.cpp) and codegen will use this to force an ICE value, preventing backend error messages. llvm-svn: 115302
-
Chris Lattner authored
llvm-svn: 115301
-
Chris Lattner authored
so it needs to be called from a macro, not a function. This is a necessary but insufficient step towards fixing PR8221 llvm-svn: 115299
-
Zhongxing Xu authored
llvm-svn: 115275
-
Zhongxing Xu authored
llvm-svn: 115272
-
Zhongxing Xu authored
llvm-svn: 115271
-
Zhongxing Xu authored
llvm-svn: 115270
-
Zhongxing Xu authored
scope. Now we only add C++ struct with non-trivial destructor variables to the local scope. llvm-svn: 115269
-
Marcin Swiderski authored
llvm-svn: 115266
-
Marcin Swiderski authored
Added generating CFGAutomaticObjDtors for init statement, condition variable and implicit scope in for statement. llvm-svn: 115265
-
Marcin Swiderski authored
dded generating CFGAutomaticObjDtors for condition variable and implicit scopes in switch statement. llvm-svn: 115264
-
Douglas Gregor authored
actually have an ASTContext, delay the processing of that update. Patch by Sebastian Redl! Fixes <rdar://problem/8499034>. llvm-svn: 115263
-
Marcin Swiderski authored
Added generating CFGAutomaticObjDtors for condition variable and implicit scopes in while and do statements. llvm-svn: 115262
-
Douglas Gregor authored
llvm-svn: 115260
-
Douglas Gregor authored
file is somehow changed in a chained PCH file, make sure that we write out the macro definition. Fixes part of <rdar://problem/8499034>. llvm-svn: 115259
-
Fariborz Jahanian authored
llvm-svn: 115258
-
Marcin Swiderski authored
llvm-svn: 115256
-
Marcin Swiderski authored
Fixed checking for trivial destructor in CFGBuilder::addLocalScopeForVarDecl. Checked type does not have to represent C++ class. llvm-svn: 115254
-
Fariborz Jahanian authored
llvm-svn: 115253
-
Marcin Swiderski authored
- Adding LocalScope for CompoundStmt, - Adding CFGAutomaticObjDtors for end of scope, return, goto, break, continue, - Regression tests for above cases. llvm-svn: 115252
-
Fariborz Jahanian authored
extension and implementation. Fixes rdar://8493239. llvm-svn: 115248
-
Argyrios Kyrtzidis authored
llvm-svn: 115247
-
Dale Johannesen authored
llvm-svn: 115244
-
Marcin Swiderski authored
llvm-svn: 115237
-
Marcin Swiderski authored
Fixed some misspells in comments. llvm-svn: 115236
-