http://llvm.org/bugs/show_bug.cgi?id=21052

            Bug ID: 21052
           Summary: Attempt to eliminate redundant loads whose addresses
                    are dependent on the result of a select instruction.
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Scalar Optimizations
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

while (i < e) {
    if (agg[i+1]->field < agg[i]->field)
      ++i;
    if (agg[i]->field > agg[j]->field)
      break;
    ...
    ...
  }

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to