Files
swift-mirror/include/swift/module.modulemap
Erik Eckstein 8080465e77 libswift: basic SIL and SIL bridging
This is the initial version of a buildable SIL definition in libswift.
It defines an initial set of SIL classes, like Function, BasicBlock, Instruction, Argument, and a few instruction classes.
The interface between C++ and SIL is a bridging layer, implemented in C.
It contains all the required bridging data structures used to access various SIL data structures.
2021-06-09 11:28:57 +02:00

6 lines
64 B
Plaintext

module SILBridging {
header "SIL/SILBridging.h"
export *
}