commit | 158e0a3e723575e88ba18a9ef390ef56958db428 | [log] [tgz] |
---|---|---|
author | Chris Lattner <clattner@google.com> | Sun Jul 08 20:51:38 2018 -0700 |
committer | jpienaar <jpienaar@google.com> | Fri Mar 29 12:30:49 2019 -0700 |
tree | d167eec23c43d5e9de127c7eeb656c9e73a3d07b | |
parent | 39ffa10bfae03e478fa2c64b5ef8b59e94a8dd36 [diff] [blame] |
Introduce the start of IR builder APIs, which makes it easier and less error prone to create things. PiperOrigin-RevId: 203703229
diff --git a/lib/IR/Module.cpp b/lib/IR/Module.cpp index b41ad2b..99e5e32 100644 --- a/lib/IR/Module.cpp +++ b/lib/IR/Module.cpp
@@ -18,6 +18,4 @@ #include "mlir/IR/Module.h" using namespace mlir; -Module::Module() { -} - +Module::Module(MLIRContext *context) : context(context) {}