Files
swift-mirror/lib/IRGen/IRGenModule.h
Chris Lattner f3ea9d7ee3 minimal hack to fix the build.
Swift SVN r539
2011-08-13 17:21:42 +00:00

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) ;
};
}