- Sep 26, 2007
-
-
Chris Lattner authored
llvm-svn: 42343
-
Chris Lattner authored
llvm-svn: 42342
-
Chris Lattner authored
llvm-svn: 42341
-
Duncan Sands authored
llvm-svn: 42338
-
Evan Cheng authored
llvm-svn: 42335
-
Chris Lattner authored
llvm-svn: 42334
-
Evan Cheng authored
llvm-svn: 42333
-
Anton Korobeynikov authored
llvm-svn: 42332
-
Daniel Berlin authored
llvm-svn: 42331
-
Hartmut Kaiser authored
llvm-svn: 42330
-
Dale Johannesen authored
llvm-svn: 42329
-
Dale Johannesen authored
cases with undefined behavior. llvm-svn: 42328
-
Ted Kremenek authored
moved to include/clang/Analysis/FlowSensitive. llvm-svn: 42327
-
Chris Lattner authored
llvm-svn: 42324
-
Evan Cheng authored
llvm-svn: 42323
-
- Sep 25, 2007
-
-
Anton Korobeynikov authored
llvm-svn: 42322
-
Ted Kremenek authored
code that uses the solver to reflect the new location. Created "FlowSensitive" subdirectory in include/clang/Analysis to hold header files relating to flow-sensitive analyses. Moved "DataflowValues.h" into this subdirectory. llvm-svn: 42320
-
Fariborz Jahanian authored
objective-c code with no @interface declaration. llvm-svn: 42319
-
Bill Wendling authored
llvm-svn: 42318
-
Ted Kremenek authored
llvm-svn: 42317
-
Dan Gohman authored
llvm-svn: 42316
-
Duncan Sands authored
llvm-svn: 42314
-
Dan Gohman authored
llvm-svn: 42313
-
Evan Cheng authored
llvm-svn: 42312
-
Fariborz Jahanian authored
semantic checks for class and protocol declarations. Test cases are good indications of kind of checking being done in this patch. llvm-svn: 42311
-
Ted Kremenek authored
"CheckDiagnostics" (used for -parse-ast-check) to check the diagnostics of any ASTConsumer. Reimplemented CheckDiagnostics to use CheckASTConsumer instead. Added driver option -warn-dead-stores-check, which checks the diagnostics generated by the DeadStores checker. This is implemented using CheckASTConsumer.111 llvm-svn: 42310
-
Devang Patel authored
This fixes PR714. llvm-svn: 42309
-
Dan Gohman authored
both results with a single div or idiv instruction. This uses new X86ISD nodes for DIV and IDIV which are introduced during the legalize phase so that the SelectionDAG's CSE can automatically eliminate redundant computations. llvm-svn: 42308
-
Ted Kremenek authored
"-check-uninit-values" to "-warn-dead-stores" and "-warn-uninit-values" llvm-svn: 42307
-
Devang Patel authored
llvm-svn: 42306
-
Ted Kremenek authored
llvm-svn: 42305
-
Ted Kremenek authored
llvm-svn: 42304
-
Dale Johannesen authored
llvm-svn: 42303
-
Evan Cheng authored
llvm-svn: 42302
-
Ted Kremenek authored
llvm-svn: 42301
-
Devang Patel authored
doh.. llvm-svn: 42300
-
Devang Patel authored
for (i=A; i<N; i++) { if (i < X && i > Y) do_something(); } is transformed into U=min(N,X); L=max(A,Y); for (i=L;i<U;i++) do_somethihg(); llvm-svn: 42299
-
Dale Johannesen authored
of zero, infinity, and NaNs. llvm-svn: 42298
-
Dan Gohman authored
the check to see if the assembler supports .loc from X86TargetLowering into the superclass TargetLowering. llvm-svn: 42297
-
Duncan Sands authored
llvm-svn: 42296
-