Silence VC warning C4715: '`anonymous namespace'::getNativeVectorSizeForA VXABI' :
authorYaron Keren <yaron.keren@gmail.com>
Tue, 23 Jun 2015 09:45:42 +0000 (09:45 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Tue, 23 Jun 2015 09:45:42 +0000 (09:45 +0000)
not all control paths return a value.

llvm-svn: 240389

clang/lib/CodeGen/TargetInfo.cpp

index 00fe2bf..05eafb9 100644 (file)
@@ -1408,6 +1408,7 @@ static unsigned getNativeVectorSizeForAVXABI(X86AVXABILevel AVXLevel) {
   case X86AVXABILevel::None:
     return 128;
   }
+  llvm_unreachable("Unknown AVXLevel");
 }
 
 /// X86_64ABIInfo - The X86_64 ABI information.