diff options
Diffstat (limited to 'lld/MinGW/Driver.cpp')
-rw-r--r-- | lld/MinGW/Driver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lld/MinGW/Driver.cpp b/lld/MinGW/Driver.cpp index be1b757e45b..f981e6ebee2 100644 --- a/lld/MinGW/Driver.cpp +++ b/lld/MinGW/Driver.cpp @@ -216,6 +216,8 @@ bool mingw::link(ArrayRef<const char *> argsArr, raw_ostream &diag) { add("-base:" + StringRef(a->getValue())); if (auto *a = args.getLastArg(OPT_map)) add("-lldmap:" + StringRef(a->getValue())); + if (auto *a = args.getLastArg(OPT_reproduce)) + add("-reproduce:" + StringRef(a->getValue())); if (auto *a = args.getLastArg(OPT_o)) add("-out:" + StringRef(a->getValue())); |