brintos

brintos / llvm-project-archived public Read only

0
0
Text · 317 B · 7a69a2c Raw
10 lines · plain
1// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s2 3// CHECK-LABEL: define void @target_features4// CHECK: attributes #{{.*}} = { "target-features"="+sme,+sve,+sme-f64f64" }5llvm.func @target_features() attributes {6  target_features = #llvm.target_features<["+sme", "+sve", "+sme-f64f64"]>7} {8  llvm.return9}10