mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
235 B
C++
10 lines
235 B
C++
namespace llvm { class TargetData; }
|
|
|
|
namespace swift {
|
|
struct IRGenModule {
|
|
IRGenModule(ASTContext &C, irgen::Options &Opts, llvm::Module&, const llvm::TargetData&) {}
|
|
void emitTranslationUnit(TranslationUnitDecl *TU) ;
|
|
};
|
|
|
|
}
|