diff options
author | Shoaib Meenai <smeenai@fb.com> | 2017-12-15 23:52:46 +0000 |
---|---|---|
committer | Shoaib Meenai <smeenai@fb.com> | 2017-12-15 23:52:46 +0000 |
commit | c4fdbca604d6ad7a17687ea253d16aa6c0c0e40d (patch) | |
tree | 35e3b6c3f61cbd8a3a9f1cbb75347aba62651de2 | |
parent | 21109249092084c5a0cdbc931c8ba991388cd04b (diff) | |
download | bcm5719-llvm-c4fdbca604d6ad7a17687ea253d16aa6c0c0e40d.tar.gz bcm5719-llvm-c4fdbca604d6ad7a17687ea253d16aa6c0c0e40d.zip |
[COFF] Update an outdated comment. NFC
This comment dates from when LLD didn't produce actual PDBs, and is very
outdated now.
llvm-svn: 320894
-rw-r--r-- | lld/COFF/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/Driver.cpp b/lld/COFF/Driver.cpp index 4e360bc9c35..6098a49a29f 100644 --- a/lld/COFF/Driver.cpp +++ b/lld/COFF/Driver.cpp @@ -817,7 +817,7 @@ void LinkerDriver::link(ArrayRef<const char *> ArgsArr) { Config->DebugTypes = getDefaultDebugType(Args); } - // Create a dummy PDB file to satisfy build sytem rules. + // Handle /pdb if (auto *Arg = Args.getLastArg(OPT_pdb)) Config->PDBPath = Arg->getValue(); |