llvm-cat: Allow bitcode files to be created with no modules.

llvm-svn: 289610
This commit is contained in:
Peter Collingbourne 2016-12-13 23:14:55 +00:00
parent da1c84c01e
commit 98d40e0557
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ static cl::opt<std::string> OutputFilename("o", cl::Required,
cl::desc("Output filename"),
cl::value_desc("filename"));
static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
static cl::list<std::string> InputFilenames(cl::Positional, cl::ZeroOrMore,
cl::desc("<input files>"));
int main(int argc, char **argv) {