Convert all tests using TCL-style quoting to use shell-style quoting.
[oota-llvm.git] / test / Assembler / 2008-09-02-FunctionNotes.ll
1 ; Test function attributes
2 ; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
3
4 define void @fn1() alwaysinline {
5   ret void
6 }
7
8 define void @fn2() noinline {
9   ret void
10 }
11
12 define void @fn3() {
13   ret void
14 }