File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 1a95cfe3550580bd8eb86c29bd2cae9881d1f580
2
+ refs/heads/master: a364df029cc733dff8dbe32e431eecc15e8101a8
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
Original file line number Diff line number Diff line change @@ -1381,7 +1381,7 @@ bool irgen::requiresObjCMethodDescriptor(FuncDecl *method) {
1381
1381
if (isa<AccessorDecl>(method))
1382
1382
return false ;
1383
1383
1384
- return method->isObjC () || method-> getAttrs (). hasAttribute <IBActionAttr>() ;
1384
+ return method->isObjC ();
1385
1385
}
1386
1386
1387
1387
bool irgen::requiresObjCMethodDescriptor (ConstructorDecl *constructor) {
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ bool SILGenModule::requiresObjCMethodEntryPoint(FuncDecl *method) {
159
159
if (method->getAttrs ().hasAttribute <NSManagedAttr>())
160
160
return false ;
161
161
162
- return method->isObjC () || method-> getAttrs (). hasAttribute <IBActionAttr>() ;
162
+ return method->isObjC ();
163
163
}
164
164
165
165
bool SILGenModule::requiresObjCMethodEntryPoint (ConstructorDecl *constructor) {
You can’t perform that action at this time.
0 commit comments