Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git] / test / Transforms / MergeFunc / fold-weak.ll
1 ; RUN: opt < %s -mergefunc -S > %t
2 ; RUN: grep {define weak} %t | count 2
3 ; RUN: grep {call} %t | count 2
4
5 define weak i32 @sum(i32 %x, i32 %y) {
6   %sum = add i32 %x, %y
7   ret i32 %sum
8 }
9
10 define weak i32 @add(i32 %x, i32 %y) {
11   %sum = add i32 %x, %y
12   ret i32 %sum
13 }