1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression
Chris Lattner 1759ccff2b test for a variety of new transformations:
* A & ~A == 0
  * A / (2^c) == A >> c  if unsigned
  * 0 / A == 0
  * 1.0 * A == A
  * A * (2^c) == A << c
  * A ^ ~A == -1
  * A | ~A == -1
  * 0 % X = 0
  * A % (2^c) == A & (c-1) if unsigned
  * A - (A & B) == A & ~B
  * -1 - A == ~A

llvm-svn: 5588
2003-02-18 19:28:47 +00:00
..
Analysis/DSGraph Check field sensitivity 2003-02-03 21:40:14 +00:00
Assembler New testcase 2003-02-02 16:30:29 +00:00
BugPoint New testcase 2002-12-23 23:50:35 +00:00
CBackend Dont' stop the build 2003-01-23 16:51:47 +00:00
CFrontend New testcase, for something we may never really want to support :) 2003-02-12 21:45:39 +00:00
Jello Add more testcases 2003-01-16 19:43:11 +00:00
Linker New testcase 2003-01-30 20:03:15 +00:00
LLC * Only run LLVM tests so that testing is not stopped. 2003-01-23 16:51:24 +00:00
Other New testcase for dominator problem 2002-08-02 16:41:21 +00:00
Transforms test for a variety of new transformations: 2003-02-18 19:28:47 +00:00
Verifier New testcase to handle eventually 2002-11-06 00:52:21 +00:00