diff --git a/test/Analysis/LoopInfo/2003-05-15-NestingProblem.ll b/test/Analysis/LoopInfo/2003-05-15-NestingProblem.ll index 599b3e4b031..98c573a6052 100644 --- a/test/Analysis/LoopInfo/2003-05-15-NestingProblem.ll +++ b/test/Analysis/LoopInfo/2003-05-15-NestingProblem.ll @@ -1,7 +1,7 @@ ; This testcase was incorrectly computing that the loopentry.7 loop was ; not a child of the loopentry.6 loop. ; -; RUN: opt < %s -analyze -loops | FileCheck %s +; RUN: opt < %s -analyze -loops -enable-new-pm=0 | FileCheck %s ; RUN: opt < %s -passes='print' -disable-output 2>&1 | FileCheck %s ; CHECK: Loop at depth 4 containing: %loopentry.7
diff --git a/test/Analysis/LoopInfo/annotated-parallel-complex.ll b/test/Analysis/LoopInfo/annotated-parallel-complex.ll index 661e2660de5..f2ef3c32a16 100644 --- a/test/Analysis/LoopInfo/annotated-parallel-complex.ll +++ b/test/Analysis/LoopInfo/annotated-parallel-complex.ll @@ -1,4 +1,5 @@ -; RUN: opt -loops -analyze < %s | FileCheck %s +; RUN: opt -loops -analyze -enable-new-pm=0 < %s | FileCheck %s +; RUN: opt -passes='print' -disable-output %s 2>&1 | FileCheck %s ; ; void func(long n, double A[static const restrict 4*n], double B[static const restrict 4*n]) { ; for (long i = 0; i < n; i += 1) diff --git a/test/Analysis/LoopInfo/annotated-parallel-simple.ll b/test/Analysis/LoopInfo/annotated-parallel-simple.ll index 4e25af89979..e60ca9455df 100644 --- a/test/Analysis/LoopInfo/annotated-parallel-simple.ll +++ b/test/Analysis/LoopInfo/annotated-parallel-simple.ll @@ -1,4 +1,5 @@ -; RUN: opt -loops -analyze < %s | FileCheck %s +; RUN: opt -loops -analyze -enable-new-pm=0 < %s | FileCheck %s +; RUN: opt -passes='print' -disable-output %s 2>&1 | FileCheck %s ; ; void func(long n, double A[static const restrict n]) { ; for (long i = 0; i < n; i += 1)