summaryrefslogtreecommitdiff
path: root/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
diff options
context:
space:
mode:
authorArnold Schwaighofer <aschwaighofer@apple.com>2013-05-11 23:04:28 +0000
committerArnold Schwaighofer <aschwaighofer@apple.com>2013-05-11 23:04:28 +0000
commit9b5d70f07630f99f1ec5589aeaba96c6d8ab0aee (patch)
tree7a6c6cc63565a5ad554578a33d5b854c723c0830 /lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
parent6bb539a643b385520c25f3b03199f68012b9c09b (diff)
downloadllvm-9b5d70f07630f99f1ec5589aeaba96c6d8ab0aee.tar.gz
llvm-9b5d70f07630f99f1ec5589aeaba96c6d8ab0aee.tar.bz2
llvm-9b5d70f07630f99f1ec5589aeaba96c6d8ab0aee.tar.xz
LoopVectorize: Use the widest induction variable type
Use the widest induction type encountered for the cannonical induction variable. We used to turn the following loop into an empty loop because we used i8 as induction variable type and truncated 1024 to 0 as trip count. int a[1024]; void fail() { int reverse_induction = 1023; unsigned char forward_induction = 0; while ((reverse_induction) >= 0) { forward_induction++; a[reverse_induction] = forward_induction; --reverse_induction; } } radar://13862901 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp')
0 files changed, 0 insertions, 0 deletions