llvm-6502/lib/Transforms
Devang Patel 453a844128 Add transformation to update loop interation space. Now,
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();                            



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42299 91177308-0d34-0410-b5e6-96231b3b80d8
2007-09-25 17:31:19 +00:00
..
Hello Fix typo in comment. 2007-05-06 13:37:16 +00:00
Instrumentation New CallInst interface to address GLIBCXX_DEBUG errors caused by 2007-08-01 03:43:44 +00:00
IPO Fix a logic error in ValueIsOnlyUsedLocallyOrStoredToOneGlobal that caused 2007-09-14 03:41:21 +00:00
Scalar Add transformation to update loop interation space. Now, 2007-09-25 17:31:19 +00:00
Utils Fix comment. 2007-09-17 20:07:40 +00:00
Makefile Build Hello by default so it can be used in test cases. 2007-04-11 21:03:37 +00:00