eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / Inline / 2008-10-30-AlwaysInline.ll
blob11e501274d3bf19c695a180cd45902dd8f76080d
1 ; RUN: opt < %s -always-inline -S | not grep call 
3 ; Ensure that threshold doesn't disrupt always inline.
4 ; RUN: opt < %s -inline-threshold=-2000000001 -always-inline -S | not grep call 
7 define internal i32 @if0() alwaysinline {
8        ret i32 1 
11 define i32 @f0() {
12        %r = call i32 @if0()
13        ret i32 %r