Skip to content

Commit e88dcfc

Browse files
committed
Fix merge issue that caused IO pipe tests breakage
It seems that a 'break' got lost from that switch during the merge process, which resulted in pipe code getting into swift-error handling code. This patch adds the missing 'break' back.
1 parent ab5cbf8 commit e88dcfc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8230,6 +8230,7 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
82308230
break;
82318231
case ParsedAttr::AT_SYCLIntelPipeIO:
82328232
handleSYCLIntelPipeIOAttr(S, D, AL);
8233+
break;
82338234

82348235
// Swift attributes.
82358236
case ParsedAttr::AT_SwiftBridge:

0 commit comments

Comments
 (0)