aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaperchalice <liujunchang97@outlook.com>2024-04-11 12:27:18 +0800
committerGitHub <noreply@github.com>2024-04-11 12:27:18 +0800
commitefb8cc5ddb03897795dc153a03d0c1548c8ee4a7 (patch)
tree4a65894a14dde6ec1a505c7da88b28d674d4d259
parentb5640369337e98e573c949080ed4a4061ec6ec9a (diff)
downloadllvm-efb8cc5ddb03897795dc153a03d0c1548c8ee4a7.zip
llvm-efb8cc5ddb03897795dc153a03d0c1548c8ee4a7.tar.gz
llvm-efb8cc5ddb03897795dc153a03d0c1548c8ee4a7.tar.bz2
[NewPM] Fix print-changed-dot-cfg failure (#88351)
Fix failure in #80946.
-rw-r--r--llvm/test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.mir2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.mir b/llvm/test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.mir
index 340ece9..4060363 100644
--- a/llvm/test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.mir
+++ b/llvm/test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.mir
@@ -1,7 +1,7 @@
# REQUIRES: x86-registered-target
# Simple functionality check.
# RUN: rm -rf %t && mkdir -p %t
-# RUN: llc -filetype=null -print-changed=dot-cfg -passes=no-op-machine-function -dot-cfg-dir=%t %s
+# RUN: llc -mtriple=x86_64-pc-linux-gnu -filetype=null -print-changed=dot-cfg -passes=no-op-machine-function -dot-cfg-dir=%t %s
# RUN: ls %t/*.pdf %t/passes.html | count 3
---