diff options
author | Davide Italiano <davide@freebsd.org> | 2016-03-29 21:48:25 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2016-03-29 21:48:25 +0000 |
commit | 47c33f03874e554642a2934e36a86e161c3db10c (patch) | |
tree | 41212128a2cc436de2995c93b7564833f1a7d1fc | |
parent | 86f2bd5ca117562e78150a12a473e8db3d47faaa (diff) | |
download | bcm5719-llvm-47c33f03874e554642a2934e36a86e161c3db10c.tar.gz bcm5719-llvm-47c33f03874e554642a2934e36a86e161c3db10c.zip |
[ELF] Drive-by cleanup, make LTO.cpp clang-format clean.
llvm-svn: 264791
-rw-r--r-- | lld/ELF/LTO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LTO.cpp b/lld/ELF/LTO.cpp index 9a24115dfa8..63fb6e3a3a5 100644 --- a/lld/ELF/LTO.cpp +++ b/lld/ELF/LTO.cpp @@ -125,7 +125,7 @@ void BitcodeCompiler::add(BitcodeFile &F) { static void internalize(GlobalValue &GV) { assert(!GV.hasLocalLinkage() && - "Trying to internalize a symbol with local linkage!") ; + "Trying to internalize a symbol with local linkage!"); GV.setLinkage(GlobalValue::InternalLinkage); } |