Skip to content

Commit f5b4d2a

Browse files
committed
---
yaml --- r: 346837 b: refs/heads/master c: a364df0 h: refs/heads/master i: 346835: 138f5b8
1 parent 8048d87 commit f5b4d2a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 1a95cfe3550580bd8eb86c29bd2cae9881d1f580
2+
refs/heads/master: a364df029cc733dff8dbe32e431eecc15e8101a8
33
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea

trunk/lib/IRGen/GenObjC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@ bool irgen::requiresObjCMethodDescriptor(FuncDecl *method) {
13811381
if (isa<AccessorDecl>(method))
13821382
return false;
13831383

1384-
return method->isObjC() || method->getAttrs().hasAttribute<IBActionAttr>();
1384+
return method->isObjC();
13851385
}
13861386

13871387
bool irgen::requiresObjCMethodDescriptor(ConstructorDecl *constructor) {

trunk/lib/SILGen/SILGenType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ bool SILGenModule::requiresObjCMethodEntryPoint(FuncDecl *method) {
159159
if (method->getAttrs().hasAttribute<NSManagedAttr>())
160160
return false;
161161

162-
return method->isObjC() || method->getAttrs().hasAttribute<IBActionAttr>();
162+
return method->isObjC();
163163
}
164164

165165
bool SILGenModule::requiresObjCMethodEntryPoint(ConstructorDecl *constructor) {

0 commit comments

Comments
 (0)