On Oct 11, 2007, at 3:08 PM, Dan Gohman wrote:

>> +      ConstantInt *MemOpLength =  
>> dyn_cast<ConstantInt>(CI.getOperand(3));
>> +      if (isa<MemCpyInst>(MI))
>> +        if (MemOpLength) {
>
> Can you replace these two if statements with
>
>     if (isa<MemCpyInst>(MI) && MemOpLength) {
>
> ?
>
> Then the indentation of what follows won't be wrong either :-)

OK. I don't know why I did it this way.
-
Devang
_______________________________________________
llvm-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to