summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2012-03-05 12:49:45 +0000
committerNadav Rotem <nadav.rotem@intel.com>2012-03-05 12:49:45 +0000
commit9952cf94b5434c1c79d1660d736f2f057cfe36f0 (patch)
treedba07d309ff705476be7da5c6026e5c9761e8d69 /llvm/include
parent3eb328574eb49ced8d948ee5faf42b867d9924d9 (diff)
downloadbcm5719-llvm-9952cf94b5434c1c79d1660d736f2f057cfe36f0.tar.gz
bcm5719-llvm-9952cf94b5434c1c79d1660d736f2f057cfe36f0.zip
Remove an unused function.
llvm-svn: 152028
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/CodeGen/ValueTypes.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/include/llvm/CodeGen/ValueTypes.h b/llvm/include/llvm/CodeGen/ValueTypes.h
index ecfd7c9e0ba..76c2357a552 100644
--- a/llvm/include/llvm/CodeGen/ValueTypes.h
+++ b/llvm/include/llvm/CodeGen/ValueTypes.h
@@ -443,19 +443,6 @@ namespace llvm {
return getExtendedVectorVT(Context, VT, NumElements);
}
- /// getIntVectorWithNumElements - Return any integer vector type that has
- /// the specified number of elements.
- static EVT getIntVectorWithNumElements(LLVMContext &C, unsigned NumElts) {
- switch (NumElts) {
- default: return getVectorVT(C, MVT::i8, NumElts);
- case 1: return MVT::v1i64;
- case 2: return MVT::v2i32;
- case 4: return MVT::v4i16;
- case 8: return MVT::v8i8;
- case 16: return MVT::v16i8;
- }
- }
-
/// changeVectorElementTypeToInteger - Return a vector with the same number
/// of elements as this vector, but with the element type converted to an
/// integer type with the same bitwidth.
OpenPOWER on IntegriCloud