From 17d3983730c982953123d19077ea8906274f3e24 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Mon, 30 Aug 2010 15:08:02 +0000 Subject: [PATCH] Fix constant-over-index.ll test on windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112483 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/BasicAA/constant-over-index.ll | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Analysis/BasicAA/constant-over-index.ll b/test/Analysis/BasicAA/constant-over-index.ll index 95f94d096f3..0e0c45c8ad5 100644 --- a/test/Analysis/BasicAA/constant-over-index.ll +++ b/test/Analysis/BasicAA/constant-over-index.ll @@ -1,7 +1,8 @@ -; RUN: opt < %s -aa-eval -print-all-alias-modref-info \ -; RUN: |& grep {MayAlias: double\\* \[%\]p.0.i.0, double\\* \[%\]p3\$} +; RUN: opt < %s -aa-eval -print-all-alias-modref-info |& FileCheck %s ; PR4267 +; CHECK: MayAlias: double* %p.0.i.0, double* %p3 + ; %p3 is equal to %p.0.i.0 on the second iteration of the loop, ; so MayAlias is needed. -- 2.34.1