File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -632,8 +632,6 @@ class NeonEmitter {
632
632
// Emit arm_bf16.h.inc
633
633
void runBF16 (raw_ostream &o);
634
634
635
- void runMFloat8 (raw_ostream &o);
636
-
637
635
void runVectorTypes (raw_ostream &o);
638
636
639
637
// Emit all the __builtin prototypes used in arm_neon.h, arm_fp16.h and
@@ -783,9 +781,7 @@ Type Type::fromTypedefName(StringRef Name) {
783
781
T.Kind = Poly;
784
782
} else if (Name.consume_front (" bfloat" )) {
785
783
T.Kind = BFloat16;
786
- } else if (Name.consume_front (" mfp" )) {
787
- T.Kind = MFloat8;
788
- } else {
784
+ else {
789
785
assert (Name.starts_with (" int" ));
790
786
Name = Name.drop_front (3 );
791
787
}
@@ -881,10 +877,6 @@ void Type::applyTypespec(bool &Quad) {
881
877
if (isPoly ())
882
878
NumVectors = 0 ;
883
879
break ;
884
- case ' m' :
885
- Kind = MFloat8;
886
- ElementBitwidth = 8 ;
887
- break ;
888
880
case ' b' :
889
881
Kind = BFloat16;
890
882
ElementBitwidth = 16 ;
You can’t perform that action at this time.
0 commit comments