Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Transforms / Inline / externally_available.ll
blob43fe5d37f9e8478718e7abd32f8e7d355c9fb226
1 ; RUN: opt < %s -inline -constprop -S > %t
2 ; RUN: not grep test_function %t
3 ; RUN: grep {ret i32 5} %t
6 ; test_function should not be emitted to the .s file.
7 define available_externally i32 @test_function() {
8   ret i32 4
12 define i32 @result() {
13   %A = call i32 @test_function()
14   %B = add i32 %A, 1
15   ret i32 %B