brintos

brintos / llvm-project-archived public Read only

0
0
Text · 282 B · e0bc66c Raw
9 lines · plain
1// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s2 3// CHECK: define void @reciprocal_estimates() #[[ATTRS:.*]] {4// CHECK: attributes #[[ATTRS]] = { "reciprocal-estimates"="all" }5 6llvm.func @reciprocal_estimates() attributes {reciprocal_estimates = "all"} {7  llvm.return8}9