wangpc-pp wrote:
Sorry for the noise, this is for testing spr tools.
https://github.com/llvm/llvm-project/pull/78946
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-com
https://github.com/wangpc-pp closed
https://github.com/llvm/llvm-project/pull/78946
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
Author: Wang Pengcheng (wangpc-pp)
Changes
This reverts commit 333963a9c75b2f79bff73227eae0c72747ac945e.
---
Full diff: https://github.com/llvm/llvm-project/pull/78946.diff
4 Files Affected:
- (modified) llvm/lib/Target/RISCV/RISCVFea
https://github.com/wangpc-pp created
https://github.com/llvm/llvm-project/pull/78946
This reverts commit 333963a9c75b2f79bff73227eae0c72747ac945e.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/78880
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin approved this pull request.
LGTM, some nits
https://github.com/llvm/llvm-project/pull/78880
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-c
@@ -156,10 +88,86 @@ def main(argv):
)
-def entrypoint():
-multiprocessing.set_start_method("fork")
-app.run(main)
-
-
if __name__ == "__main__":
-entrypoint()
+parser = argparse.ArgumentParser(
mtrofin wrote:
nit: could you factor all t
@@ -12,43 +12,38 @@
--default_args=""
"""
-from absl import app
-from absl import flags
-from absl import logging
+import logging
+import argparse
mtrofin wrote:
can the imports be in alphabetical order, or does `black` not do that for us?
https://github.c