diff options
| author | Nick Kledzik <kledzik@apple.com> | 2014-11-06 19:33:59 +0000 |
|---|---|---|
| committer | Nick Kledzik <kledzik@apple.com> | 2014-11-06 19:33:59 +0000 |
| commit | babee83257e021211277a9267cfd099a52b7e5f9 (patch) | |
| tree | 2a76e7c41f4ecc9aaa4690c8f0bdaab0c7df6d9d | |
| parent | 24f504001d937737c0403c57fbd1c454645a23f7 (diff) | |
| download | bcm5719-llvm-babee83257e021211277a9267cfd099a52b7e5f9.tar.gz bcm5719-llvm-babee83257e021211277a9267cfd099a52b7e5f9.zip | |
remove unneeded { }
llvm-svn: 221478
| -rw-r--r-- | lld/lib/Driver/DarwinLdDriver.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lld/lib/Driver/DarwinLdDriver.cpp b/lld/lib/Driver/DarwinLdDriver.cpp index 723b6509395..86f19e31cac 100644 --- a/lld/lib/Driver/DarwinLdDriver.cpp +++ b/lld/lib/Driver/DarwinLdDriver.cpp @@ -641,9 +641,8 @@ bool DarwinLdDriver::parse(int argc, const char *argv[], } // Handle debug info handling options: -S - if (parsedArgs->hasArg(OPT_S)) { + if (parsedArgs->hasArg(OPT_S)) ctx.setDebugInfoMode(MachOLinkingContext::DebugInfoMode::noDebugMap); - } // Handle input files for (auto &arg : *parsedArgs) { |

