eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / Inline / 2008-09-02-AlwaysInline.ll
blob39095c407281516a8ae31071820601b3c61c697b
1 ; RUN: opt < %s  -inline-threshold=0 -inline -S | not grep call 
3 define i32 @fn2() alwaysinline {
4   ret i32 1
7 define i32 @fn3() {
8    %r = call i32 @fn2()
9    ret i32 %r