[llvm] 3d272ee - Fix test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll.

James Y Knight via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 27 15:33:16 PDT 2021


Author: James Y Knight
Date: 2021-07-27T18:32:29-04:00
New Revision: 3d272eea08b1e018a0dfbd6dbd602272382aa99a

URL: https://github.com/llvm/llvm-project/commit/3d272eea08b1e018a0dfbd6dbd602272382aa99a
DIFF: https://github.com/llvm/llvm-project/commit/3d272eea08b1e018a0dfbd6dbd602272382aa99a.diff

LOG: Fix test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll.

It was writing to the source directory (which may not be writeable),
rather than using %t.

Fixes: a5dd6c6cf935 ("[LoopVectorize] Don't interleave scalar ordered reductions for inner loops")

Added: 
    

Modified: 
    llvm/test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll b/llvm/test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll
index a35bab85fed3..dac6e28df7b9 100644
--- a/llvm/test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll
+++ b/llvm/test/Transforms/LoopVectorize/AArch64/strict-fadd-vf1.ll
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
-; RUN: opt -loop-vectorize -enable-strict-reductions=true -force-vector-width=1 -S < %s -debug 2>log | FileCheck %s
-; RUN: cat log | FileCheck %s --check-prefix=CHECK-DEBUG
+; RUN: opt -loop-vectorize -enable-strict-reductions=true -force-vector-width=1 -S < %s -debug 2> %t.debug | FileCheck %s
+; RUN: cat %t.debug | FileCheck %s --check-prefix=CHECK-DEBUG
 
 target triple = "aarch64-unknown-linux-gnu"
 


        


More information about the llvm-commits mailing list