Change the default number of registers to prevent unrolling on targets that dont have this hook.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171489 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/TargetTransformImpl.cpp b/lib/Target/TargetTransformImpl.cpp
index 7d663f5..08795fc 100644
--- a/lib/Target/TargetTransformImpl.cpp
+++ b/lib/Target/TargetTransformImpl.cpp
@@ -172,7 +172,7 @@
 }
 
 unsigned VectorTargetTransformImpl::getNumberOfRegisters(bool Vector) const {
-  return 8;
+  return 1;
 }
 
 unsigned VectorTargetTransformImpl::getArithmeticInstrCost(unsigned Opcode,