This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
322d0df309
llvm-project
/
clang
/
test
/
Modules
/
Inputs
/
MethodPoolA.h
15 lines
107 B
C
Raw
Normal View
History
Unescape
Escape
Whenever Sema attempts to look in the global method pool, try to load additional data from the external Sema source. This properly copes with modules that are imported after we have already searched in the global method pool for a given selector. For PCH, it's a slight pessimization to be fixed soon. llvm-svn: 148891
2012-01-25 08:59:09 +08:00
@
interface
A
+
(
int
)
method1
;
-
(
int
)
method2
:
(
int
)
param
;
@
end
Order the methods in the global method pool based on when they become visible, not when they become deserialized <rdar://problem/13203033>. llvm-svn: 175018
2013-02-13 07:36:21 +08:00
@
interface
B
:
A
@
end
@
interface
C
@
end