[PATCH] D47192: [utils] Reflow asm check generation to tolerate blank lines

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 22 12:31:15 PDT 2018


MaskRay added inline comments.


================
Comment at: utils/UpdateTestChecks/common.py:195
       # to variable naming fashions.
-      func_body = genericize_check_lines(func_body, is_analyze)
+      if is_asm == False:
+        func_body = genericize_check_lines(func_body, is_analyze)
----------------
`if not is_asm:`


================
Comment at: utils/UpdateTestChecks/common.py:218
+
+        if is_asm == False:
+          # Do not waste time checking IR comments.
----------------
`if not is_asm:`


Repository:
  rL LLVM

https://reviews.llvm.org/D47192





More information about the llvm-commits mailing list