Make AssociativeOpt static.
authorDan Gohman <gohman@apple.com>
Tue, 20 May 2008 01:14:05 +0000 (01:14 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 20 May 2008 01:14:05 +0000 (01:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51290 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 41e528a5a5a42f81a7646bd321f80a18b2c01495..82d9fa87432018780ade7818c8b029e1fc13e028 100644 (file)
@@ -2212,7 +2212,7 @@ unsigned InstCombiner::ComputeNumSignBits(Value *V, unsigned Depth) const{
 /// 'shouldApply' and 'apply' methods.
 ///
 template<typename Functor>
-Instruction *AssociativeOpt(BinaryOperator &Root, const Functor &F) {
+static Instruction *AssociativeOpt(BinaryOperator &Root, const Functor &F) {
   unsigned Opcode = Root.getOpcode();
   Value *LHS = Root.getOperand(0);