diff --git a/llvm/test/Transforms/InstSimplify/2010-12-20-Boolean.ll b/llvm/test/Transforms/InstSimplify/2010-12-20-Boolean.ll --- a/llvm/test/Transforms/InstSimplify/2010-12-20-Boolean.ll +++ b/llvm/test/Transforms/InstSimplify/2010-12-20-Boolean.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by update_test_checks.py -; RUN: opt < %s -instsimplify -S | FileCheck %s +; RUN: opt < %s -passes=instsimplify -S | FileCheck %s define i1 @add(i1 %x) { ; CHECK-LABEL: @add( diff --git a/llvm/test/Transforms/InstSimplify/2011-01-14-Thread.ll b/llvm/test/Transforms/InstSimplify/2011-01-14-Thread.ll --- a/llvm/test/Transforms/InstSimplify/2011-01-14-Thread.ll +++ b/llvm/test/Transforms/InstSimplify/2011-01-14-Thread.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -instsimplify -S | FileCheck %s +; RUN: opt < %s -passes=instsimplify -S | FileCheck %s define i32 @shift_select(i1 %cond) { ; CHECK-LABEL: @shift_select( diff --git a/llvm/test/Transforms/InstSimplify/2011-02-01-Vector.ll b/llvm/test/Transforms/InstSimplify/2011-02-01-Vector.ll --- a/llvm/test/Transforms/InstSimplify/2011-02-01-Vector.ll +++ b/llvm/test/Transforms/InstSimplify/2011-02-01-Vector.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -instsimplify -S | FileCheck %s +; RUN: opt < %s -passes=instsimplify -S | FileCheck %s define <2 x i32> @sdiv(<2 x i32> %x) { ; CHECK-LABEL: @sdiv( diff --git a/llvm/test/Transforms/InstSimplify/2011-09-05-InsertExtractValue.ll b/llvm/test/Transforms/InstSimplify/2011-09-05-InsertExtractValue.ll --- a/llvm/test/Transforms/InstSimplify/2011-09-05-InsertExtractValue.ll +++ b/llvm/test/Transforms/InstSimplify/2011-09-05-InsertExtractValue.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt < %s -instsimplify -S | FileCheck %s +; RUN: opt < %s -passes=instsimplify -S | FileCheck %s declare void @bar() diff --git a/llvm/test/Transforms/InstSimplify/2011-11-23-MaskedBitsCrash.ll b/llvm/test/Transforms/InstSimplify/2011-11-23-MaskedBitsCrash.ll --- a/llvm/test/Transforms/InstSimplify/2011-11-23-MaskedBitsCrash.ll +++ b/llvm/test/Transforms/InstSimplify/2011-11-23-MaskedBitsCrash.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -instsimplify +; RUN: opt < %s -passes=instsimplify ; The mul can be proved to always overflow (turning a negative value ; into a positive one) and thus results in undefined behaviour. At diff --git a/llvm/test/Transforms/InstSimplify/2013-04-19-ConstantFoldingCrash.ll b/llvm/test/Transforms/InstSimplify/2013-04-19-ConstantFoldingCrash.ll --- a/llvm/test/Transforms/InstSimplify/2013-04-19-ConstantFoldingCrash.ll +++ b/llvm/test/Transforms/InstSimplify/2013-04-19-ConstantFoldingCrash.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -instsimplify +; RUN: opt < %s -passes=instsimplify target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" diff --git a/llvm/test/Transforms/InstSimplify/AndOrXor.ll b/llvm/test/Transforms/InstSimplify/AndOrXor.ll --- a/llvm/test/Transforms/InstSimplify/AndOrXor.ll +++ b/llvm/test/Transforms/InstSimplify/AndOrXor.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt < %s -instsimplify -S | FileCheck %s +; RUN: opt < %s -passes=instsimplify -S | FileCheck %s declare i32 @llvm.smax.i32(i32, i32) declare <2 x i32> @llvm.umin.v2i32(<2 x i32>, <2 x i32>) diff --git a/llvm/test/Transforms/InstSimplify/ConstProp/2002-03-11-ConstPropCrash.ll b/llvm/test/Transforms/InstSimplify/ConstProp/2002-03-11-ConstPropCrash.ll --- a/llvm/test/Transforms/InstSimplify/ConstProp/2002-03-11-ConstPropCrash.ll +++ b/llvm/test/Transforms/InstSimplify/ConstProp/2002-03-11-ConstPropCrash.ll @@ -1,11 +1,11 @@ ; When constant propogating terminator instructions, the basic block iterator ; was not updated to refer to the final position of the new terminator. This -; can be bad, f.e. because constproping a terminator can lead to the +; can be bad, f.e. because constproping a terminator can lead to the ; destruction of PHI nodes, which invalidates the iterator! ; ; Fixed by adding new arguments to ConstantFoldTerminator ; -; RUN: opt < %s -instsimplify +; RUN: opt < %s -passes=instsimplify define void @build_tree(i32 %ml) { ;