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