aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeEmitterGen.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-01 04:38:18 +0000
committerChris Lattner <sabre@nondot.org>2003-08-01 04:38:18 +0000
commit048c00db1cd05bbbd616e0eff71756eebd45f6b4 (patch)
treee7ba5ba0a19563d5bef59db9c15784435fe19459 /utils/TableGen/CodeEmitterGen.h
parent5c737ad4d669b835b8fb973a5c477a4dbb213830 (diff)
Simplify code to match new interfaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeEmitterGen.h')
-rw-r--r--utils/TableGen/CodeEmitterGen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/CodeEmitterGen.h b/utils/TableGen/CodeEmitterGen.h
index 1642034024..7ae3ef8d92 100644
--- a/utils/TableGen/CodeEmitterGen.h
+++ b/utils/TableGen/CodeEmitterGen.h
@@ -16,8 +16,8 @@ class CodeEmitterGen {
public:
CodeEmitterGen(RecordKeeper &R) : Records(R) {}
- // run - Output the code emitter, returning true on failure.
- bool run(std::ostream &o);
+ // run - Output the code emitter
+ void run(std::ostream &o);
private:
void emitMachineOpEmitter(std::ostream &o, const std::string &Namespace);
void emitGetValueBit(std::ostream &o, const std::string &Namespace);