[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / Transforms / ForcedFunctionAttrs / forced.ll
bloba41e9c0efbe4601cd46b1d62981fa243e2f8dfe7
1 ; RUN: opt < %s -S -forceattrs | FileCheck %s --check-prefix=CHECK-CONTROL
2 ; RUN: opt < %s -S -forceattrs -force-attribute foo:noinline | FileCheck %s --check-prefix=CHECK-FOO
3 ; RUN: opt < %s -S -passes=forceattrs -force-attribute foo:noinline | FileCheck %s --check-prefix=CHECK-FOO
5 ; CHECK-CONTROL: define void @foo() {
6 ; CHECK-FOO: define void @foo() #0 {
7 define void @foo() {
8   ret void
12 ; CHECK-FOO: attributes #0 = { noinline }