================
@@ -1489,6 +1489,9 @@ Expr ScriptParser::readPrimary() {
Expr e = readPrimary();
return [=] { return -e().getValue(); };
}
+ if (consume("+")) {
+ return readPrimary();
+ }
----------------
partaror wrote:
Done.
https://github.com/llvm/llvm-project/pull/121508