From b5d6e76bb7baba6885e92d0f8d639bf2b1da379d Mon Sep 17 00:00:00 2001 From: George Rimar Date: Tue, 3 Jul 2018 14:16:19 +0000 Subject: [PATCH] [ELF] - Add a comment. NFC. Minor follow up for r336197 "[ELF] - Add support for '||' and '&&' in linker scripts." llvm-svn: 336199 --- lld/ELF/ScriptLexer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lld/ELF/ScriptLexer.cpp b/lld/ELF/ScriptLexer.cpp index 49e808e..9f81b42 100644 --- a/lld/ELF/ScriptLexer.cpp +++ b/lld/ELF/ScriptLexer.cpp @@ -116,6 +116,7 @@ void ScriptLexer::tokenize(MemoryBufferRef MB) { } // ">foo" is parsed to ">" and "foo", but ">>" is parsed to ">>". + // "|", "||", "&" and "&&" are different operators. if (S.startswith("<<") || S.startswith("<=") || S.startswith(">>") || S.startswith(">=") || S.startswith("||") || S.startswith("&&")) { Vec.push_back(S.substr(0, 2)); -- 2.7.4