Skip to content

Commit 0178e8d

Browse files
Address review comments
1 parent 4411ed7 commit 0178e8d

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

clang/include/clang/Basic/AArch64SVEACLETypes.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
#ifndef SVE_VECTOR_TYPE_BFLOAT
7171
#define SVE_VECTOR_TYPE_BFLOAT(Name, MangledName, Id, SingletonId, NumEls, ElBits, NF) \
72-
SVE_VECTOR_TYPE_DETAILS(Name, MangledName, Id, SingletonId, NumEls, ElBits, NF, true, false, true)
72+
SVE_VECTOR_TYPE_DETAILS(Name, MangledName, Id, SingletonId, NumEls, ElBits, NF, false, false, true)
7373
#endif
7474

7575
#ifndef SVE_VECTOR_TYPE_FLOAT

clang/lib/AST/ASTContext.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4419,13 +4419,6 @@ QualType ASTContext::getScalableVectorType(QualType EltTy, unsigned NumElts,
44194419
EltTySize == ElBits && NumElts == (NumEls * NF) && NumFields == 1) { \
44204420
return SingletonId; \
44214421
}
4422-
#define SVE_VECTOR_TYPE_MFLOAT(Name, MangledName, Id, SingletonId, NumEls, \
4423-
ElBits, NF) \
4424-
if (EltTy->hasIntegerRepresentation() && !EltTy->isBooleanType() && \
4425-
!EltTy->hasSignedIntegerRepresentation() && EltTySize == ElBits && \
4426-
NumElts == (NumEls * NF) && NumFields == 1) { \
4427-
return SingletonId; \
4428-
}
44294422
#define SVE_PREDICATE_TYPE_ALL(Name, MangledName, Id, SingletonId, NumEls, NF) \
44304423
if (EltTy->isBooleanType() && NumElts == (NumEls * NF) && NumFields == 1) \
44314424
return SingletonId;

0 commit comments

Comments
 (0)