[PATCH] D79936: [FileCheck] Add function call support to numerical expressions.

Alexander Richardson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 4 12:09:42 PDT 2020


arichardson added inline comments.


================
Comment at: llvm/lib/Support/FileCheck.cpp:629
+  while (!Expr.empty() && !Expr.startswith(")")) {
+    Expr = Expr.rtrim(SpaceChars);
+    if (Expr.startswith(","))
----------------
Should this be ltrim?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D79936/new/

https://reviews.llvm.org/D79936





More information about the llvm-commits mailing list