File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
trunk/include/swift/Reflection Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 4c24e5bf582df8e9dbd2dd45082657da4cd280d4
2
+ refs/heads/master: 05943d7e6960b9074bfad7ae2ae62a1db373afcc
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 @@ -331,7 +331,7 @@ class ReflectionContext
331
331
332
332
// FIXME: This code needs to be cleaned up and updated
333
333
// to make it work for 32 bit platforms.
334
- if (SectionName != " .sw5cptr" ) {
334
+ if (SectionName != " .sw5cptr" && SectionName != " .sw5bltn " ) {
335
335
Begin += 8 ;
336
336
End -= 8 ;
337
337
}
@@ -349,9 +349,8 @@ class ReflectionContext
349
349
findCOFFSectionByName (" .sw5flmd" );
350
350
std::pair<std::pair<const char *, const char *>, uint32_t > AssocTySec =
351
351
findCOFFSectionByName (" .sw5asty" );
352
- // FIXME: Use the section .sw5bltn instead.
353
352
std::pair<std::pair<const char *, const char *>, uint32_t > BuiltinTySec =
354
- {{ nullptr , nullptr }, 0 } ;
353
+ findCOFFSectionByName ( " .sw5bltn " ) ;
355
354
std::pair<std::pair<const char *, const char *>, uint32_t > ReflStrMdSec =
356
355
findCOFFSectionByName (" .sw5rfst" );
357
356
You can’t perform that action at this time.
0 commit comments