[llvm] r322213 - Test commit access

Scott Linder via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 10 11:27:20 PST 2018


Author: scott.linder
Date: Wed Jan 10 11:27:20 2018
New Revision: 322213

URL: http://llvm.org/viewvc/llvm-project?rev=322213&view=rev
Log:
Test commit access

Modified:
    llvm/trunk/lib/IR/ValueTypes.cpp

Modified: llvm/trunk/lib/IR/ValueTypes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/ValueTypes.cpp?rev=322213&r1=322212&r2=322213&view=diff
==============================================================================
--- llvm/trunk/lib/IR/ValueTypes.cpp (original)
+++ llvm/trunk/lib/IR/ValueTypes.cpp Wed Jan 10 11:27:20 2018
@@ -272,8 +272,8 @@ Type *EVT::getTypeForEVT(LLVMContext &Co
   case MVT::v16f32:   return VectorType::get(Type::getFloatTy(Context), 16);
   case MVT::v1f64:   return VectorType::get(Type::getDoubleTy(Context), 1);
   case MVT::v2f64:   return VectorType::get(Type::getDoubleTy(Context), 2);
-  case MVT::v4f64:   return VectorType::get(Type::getDoubleTy(Context), 4); 
-  case MVT::v8f64:   return VectorType::get(Type::getDoubleTy(Context), 8); 
+  case MVT::v4f64:   return VectorType::get(Type::getDoubleTy(Context), 4);
+  case MVT::v8f64:   return VectorType::get(Type::getDoubleTy(Context), 8);
   case MVT::Metadata: return Type::getMetadataTy(Context);
  }
 }




More information about the llvm-commits mailing list