Skip to content

Commit d4ca1ac

Browse files
authored
[AutoDiff] NFC: fix warning in DeserializeSIL.cpp. (#27968)
Remove unused variable `Attr3`. It is no longer necessary after #27919.
1 parent d23fa02 commit d4ca1ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Serialization/DeserializeSIL.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ bool SILDeserializer::readSILInstruction(SILFunction *Fn, SILBasicBlock *BB,
10501050
Builder.setCurrentDebugScope(Fn->getDebugScope());
10511051
unsigned RawOpCode = 0, TyCategory = 0, TyCategory2 = 0, TyCategory3 = 0,
10521052
// SWIFT_ENABLE_TENSORFLOW
1053-
Attr = 0, Attr2 = 0, Attr3 = 0, NumSubs = 0, NumConformances = 0,
1053+
Attr = 0, Attr2 = 0, NumSubs = 0, NumConformances = 0,
10541054
IsNonThrowingApply = 0;
10551055
ValueID ValID, ValID2, ValID3;
10561056
TypeID TyID, TyID2, TyID3;

0 commit comments

Comments
 (0)