1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/lib
Chris Lattner ac8a2be5e4 Remove explicit check for: not (not X) = X, it is already handled because xor is commutative
- InstCombine: (X & C1) ^ C2 --> (X & C1) | C2 iff (C1&C2) == 0
  - InstCombine: (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2

llvm-svn: 7282
2003-07-23 21:37:07 +00:00
..
Analysis Fit code into 80 columns 2003-07-23 15:17:01 +00:00
AsmParser Remove redundant const qualifiers from cast<> expressions 2003-07-23 15:30:06 +00:00
Bytecode Remove redundant const qualifiers from cast<> expressions 2003-07-23 15:30:06 +00:00
CodeGen Remove unnecessary casts 2003-07-23 15:17:51 +00:00
CWriter Fix program: SingleSource/UnitTests/2003-07-09-SignedArgs with the CBE 2003-07-23 20:45:31 +00:00
ExecutionEngine Fix space 2003-07-23 20:21:06 +00:00
Support Simplify code by using ConstantInt::getRawValue instead of checking to see 2003-07-23 15:22:26 +00:00
Target Printer.cpp: Ditch addRequired/getAnalysis, because they leave 2003-07-23 20:25:08 +00:00
Transforms Remove explicit check for: not (not X) = X, it is already handled because xor is commutative 2003-07-23 21:37:07 +00:00
VMCore Make Module::getNamedFunction prefer non-external functions if there is more than 2003-07-23 20:21:30 +00:00
Makefile Merged in autoconf branch. This provides configuration via the autoconf 2003-06-30 21:59:07 +00:00