[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / function-info-noredzone-present.ll
blob737a79de0978754a91ebb89f0a522d8383d1601b
1 ; RUN: llc -mtriple=aarch64---  --verify-machineinstrs -stop-before=finalize-isel -simplify-mir -o - < %s | FileCheck %s
3 ; Here we check thatt the noredzone attribute is carried through the machine
4 ; IR generation and is put in MachineFunctionInfo
6 define void @baz() {
7   entry:
8     ; CHECK-LABEL: name:            baz
9     ; CHECK: machineFunctionInfo: {}
10     ret void
13 define void @bar() #0 {
14   entry:
15     ; CHECK-LABEL: name:            bar
16     ; CHECK: machineFunctionInfo:
17     ; CHECK-NEXT: hasRedZone:      false
18     ret void
21 attributes #0 = { noredzone }