9 lines · plain
1// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s2 3// CHECK: define void @prefer_vector_width() #[[ATTRS:.*]] {4// CHECK: attributes #[[ATTRS]] = { "prefer-vector-width"="128" }5 6llvm.func @prefer_vector_width() attributes {prefer_vector_width = "128"} {7 llvm.return8}9