From: Sean Silva Date: Tue, 9 Oct 2012 01:47:16 +0000 (+0000) Subject: Move misplaced comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=76265158d6d0be4cdb03f31b2822ace9cd532cb2;p=oota-llvm.git Move misplaced comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165474 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/TableGen/Main.h b/include/llvm/TableGen/Main.h index 7ef249e5bdf..6b51e20146d 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); }