Skip to content

Commit c9737d6

Browse files
Update NeonEmitter.cpp
1 parent f304872 commit c9737d6

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

clang/utils/TableGen/NeonEmitter.cpp

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -632,8 +632,6 @@ class NeonEmitter {
632632
// Emit arm_bf16.h.inc
633633
void runBF16(raw_ostream &o);
634634

635-
void runMFloat8(raw_ostream &o);
636-
637635
void runVectorTypes(raw_ostream &o);
638636

639637
// Emit all the __builtin prototypes used in arm_neon.h, arm_fp16.h and
@@ -783,9 +781,7 @@ Type Type::fromTypedefName(StringRef Name) {
783781
T.Kind = Poly;
784782
} else if (Name.consume_front("bfloat")) {
785783
T.Kind = BFloat16;
786-
} else if (Name.consume_front("mfp")) {
787-
T.Kind = MFloat8;
788-
} else {
784+
else {
789785
assert(Name.starts_with("int"));
790786
Name = Name.drop_front(3);
791787
}
@@ -881,10 +877,6 @@ void Type::applyTypespec(bool &Quad) {
881877
if (isPoly())
882878
NumVectors = 0;
883879
break;
884-
case 'm':
885-
Kind = MFloat8;
886-
ElementBitwidth = 8;
887-
break;
888880
case 'b':
889881
Kind = BFloat16;
890882
ElementBitwidth = 16;

0 commit comments

Comments
 (0)