[llvm] r343553 - [AArch64][DAGCombiner]: change -stop-after=isel to instruction-select

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 1 17:22:51 PDT 2018


Author: maskray
Date: Mon Oct  1 17:22:51 2018
New Revision: 343553

URL: http://llvm.org/viewvc/llvm-project?rev=343553&view=rev
Log:
[AArch64][DAGCombiner]: change -stop-after=isel to instruction-select

"isel" is registered by AMDGPU. The test will break if the AMDGPU target
is not built.

Modified:
    llvm/trunk/test/CodeGen/AArch64/sdag-store-merging-bug.ll

Modified: llvm/trunk/test/CodeGen/AArch64/sdag-store-merging-bug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/sdag-store-merging-bug.ll?rev=343553&r1=343552&r2=343553&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/sdag-store-merging-bug.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/sdag-store-merging-bug.ll Mon Oct  1 17:22:51 2018
@@ -1,4 +1,4 @@
-; RUN: llc -o - %s -mtriple aarch64-- -mattr +slow-misaligned-128store -stop-after=isel | FileCheck %s
+; RUN: llc -o - %s -mtriple aarch64-- -mattr +slow-misaligned-128store -stop-after=instruction-select | FileCheck %s
 ; Checks for a bug where selection dag store merging would construct wrong
 ; indices when extracting values from vectors, resulting in an invalid
 ; lane duplication in this case.




More information about the llvm-commits mailing list