Skip to content

Commit f634924

Browse files
committed
Coding style ig
1 parent b83c6e0 commit f634924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/AST/ByteCode/InterpBuiltin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2869,15 +2869,15 @@ static bool interp__builtin_ia32_phminposuw(InterpState &S, CodePtr OpPC,
28692869

28702870
unsigned SourceLen = Source.getNumElems();
28712871
QualType ElemQT = getElemType(Source);
2872-
OptPrimType ElemPT = S.getContext().classify(ElemQT);
2872+
PrimType ElemT = S.getContext().classify(ElemQT);
28732873
unsigned LaneBitWidth = S.getASTContext().getTypeSize(ElemQT);
28742874

28752875
bool DestUnsigned = Call->getCallReturnType(S.getASTContext())
28762876
->castAs<VectorType>()
28772877
->getElementType()
28782878
->isUnsignedIntegerOrEnumerationType();
28792879

2880-
INT_TYPE_SWITCH_NO_BOOL(*ElemPT, {
2880+
INT_TYPE_SWITCH_NO_BOOL(*ElemT, {
28812881
APSInt MinIndex(LaneBitWidth, DestUnsigned);
28822882
APSInt MinVal = Source.elem<T>(0).toAPSInt();
28832883

0 commit comments

Comments
 (0)