[mlir][spirv] Add return to function to please MSVC

This suppresses the "not all control paths return a value" warning.
This commit is contained in:
Lei Zhang 2020-03-27 18:52:15 -04:00
parent 4b3d94051c
commit d0af438161
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/Debug.h"
#include <cstdint>
#include <functional>
#define DEBUG_TYPE "mlir-spirv-lowering"
@ -136,6 +137,8 @@ SPIRVTypeConverter::getMemorySpaceForStorageClass(spirv::StorageClass storage) {
switch (storage) { STORAGE_SPACE_MAP_LIST(STORAGE_SPACE_MAP_FN) }
#undef STORAGE_SPACE_MAP_FN
llvm_unreachable("unhandled storage class!");
return UINT32_MAX;
}
Optional<spirv::StorageClass>