[llvm-commits] [llvm] r63388 - /llvm/trunk/lib/CodeGen/IntrinsicLowering.cpp

Duncan Sands baldrick at free.fr
Fri Jan 30 01:21:45 PST 2009


Hi,

>        Lo = new TruncInst(Lo_pn, ValTy, "", entry);
> -    }
> +    } else
> +      Lo = Lo_pn;
>      // Determine if the replacement bits are larger than the number of bits we

the usual style is to use braces for one-liners if other
parts of the "if" use braces:

> -    }
> +    } else {
> +      Lo = Lo_pn;
> +    }

Ciao,

Duncan.



More information about the llvm-commits mailing list