summaryrefslogtreecommitdiff
path: root/include/llvm/TableGen
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2012-10-09 01:47:16 +0000
committerSean Silva <silvas@purdue.edu>2012-10-09 01:47:16 +0000
commit76265158d6d0be4cdb03f31b2822ace9cd532cb2 (patch)
tree48ec4e01678552a99fd565bea422da72cd2992ff /include/llvm/TableGen
parent2fd7765ae50aa993bc706df8fea7d0685ea65bf2 (diff)
downloadllvm-76265158d6d0be4cdb03f31b2822ace9cd532cb2.tar.gz
llvm-76265158d6d0be4cdb03f31b2822ace9cd532cb2.tar.bz2
llvm-76265158d6d0be4cdb03f31b2822ace9cd532cb2.tar.xz
Move misplaced comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/TableGen')
-rw-r--r--include/llvm/TableGen/Main.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/TableGen/Main.h b/include/llvm/TableGen/Main.h
index 7ef249e5bd..6b51e20146 100644
--- a/include/llvm/TableGen/Main.h
+++ b/include/llvm/TableGen/Main.h
@@ -18,10 +18,10 @@ namespace llvm {
class RecordKeeper;
class raw_ostream;
+/// \brief Perform the action using Records, and write output to OS.
+/// \returns true on error, false otherwise
typedef bool TableGenMainFn(raw_ostream &OS, RecordKeeper &Records);
-/// Perform the action using Records, and write output to OS.
-/// \returns true on error, false otherwise
int TableGenMain(char *argv0, TableGenMainFn *MainFn);
}