1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

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 6d8e2f21ad
commit 592f0dc4a2

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) {