[LLVMdev] faster?
Jim Grosbach
grosbach at apple.com
Fri Feb 3 10:06:12 PST 2012
Hi Luca,
Don't use 'auto' in LLVM code for now. We still support building via some host compilers that don't support it.
-Jim
On Feb 3, 2012, at 7:31 AM, Luca Ciciriello <luca_ciciriello at hotmail.com> wrote:
> Hi All.
>
> In my C++ code I'm using the libc++ library and my question is about which construct is faster:
>
> for(auto line : lines)
> {
> ...
> }
>
> or
>
> for(auto it = lines.begin(); it != lines.end(); it++)
> {
> …
> }
>
> Thanks in advance for any answer.
>
> Luca.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
More information about the llvm-dev
mailing list