aboutsummaryrefslogtreecommitdiff
path: root/clang/utils/TableGen
diff options
context:
space:
mode:
Diffstat (limited to 'clang/utils/TableGen')
-rw-r--r--clang/utils/TableGen/RISCVVEmitter.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/utils/TableGen/RISCVVEmitter.cpp b/clang/utils/TableGen/RISCVVEmitter.cpp
index f73b0aecc..74f29ac 100644
--- a/clang/utils/TableGen/RISCVVEmitter.cpp
+++ b/clang/utils/TableGen/RISCVVEmitter.cpp
@@ -133,28 +133,20 @@ static BasicType ParseBasicType(char c) {
switch (c) {
case 'c':
return BasicType::Int8;
- break;
case 's':
return BasicType::Int16;
- break;
case 'i':
return BasicType::Int32;
- break;
case 'l':
return BasicType::Int64;
- break;
case 'x':
return BasicType::Float16;
- break;
case 'f':
return BasicType::Float32;
- break;
case 'd':
return BasicType::Float64;
- break;
case 'y':
return BasicType::BFloat16;
- break;
default:
return BasicType::Unknown;
}