diff options
author | Rui Ueyama <ruiu@google.com> | 2016-02-28 19:54:51 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-02-28 19:54:51 +0000 |
commit | 417553d393fbb3402151871a7c36876c10d1cd50 (patch) | |
tree | 36c29d3064feb40eb5b92f71b7fd80b89f31f564 /lld/include | |
parent | e7b330052fa1557ff5604ecec8d09dfb04a5827b (diff) | |
download | llvm-417553d393fbb3402151871a7c36876c10d1cd50.tar.gz |
Make the entry point function calls consistent. NFC.
llvm-svn: 262191
Diffstat (limited to 'lld/include')
-rw-r--r-- | lld/include/lld/Driver/Driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/Driver/Driver.h b/lld/include/lld/Driver/Driver.h index 2c5b22b76ce5..b990613cb765 100644 --- a/lld/include/lld/Driver/Driver.h +++ b/lld/include/lld/Driver/Driver.h @@ -71,7 +71,7 @@ private: /// Driver for Windows 'link.exe' command line options namespace coff { -void link(llvm::ArrayRef<const char *> args); +bool link(llvm::ArrayRef<const char *> args); } namespace elf { |