[yaml2obj] Add new command line option -docnum.

Input YAML file might contain multiple object file definitions.
New option `-docnum` allows to specify an ordinal number (starting from 1)
of definition used for an object file generation.

Patch reviewed by Sean Silva.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Simon Atanasyan
2014-05-31 04:51:07 +00:00
parent 44c6354015
commit df96c562a5
8 changed files with 187 additions and 15 deletions

View File

@@ -90,8 +90,8 @@ bool Input::setCurrentDocument() {
return false;
}
void Input::nextDocument() {
++DocIterator;
bool Input::nextDocument() {
return ++DocIterator != Strm->end();
}
bool Input::mapTag(StringRef Tag, bool Default) {