brintos

brintos / llvm-project-archived public Read only

0
0
Text · 426 B · 459859f Raw
12 lines · plain
1// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s2 3// Check that dialect attributes are processed for external functions.4// This might not be an intended use case for `nvvm.minctasm`, but it enables5// testing this feature easily.6 7module {8  llvm.func external @f() attributes { nvvm.minctasm = 10 : i32 }9  // CHECK: declare void @f() #[[ATTRS:[0-9]+]]10  // CHECK: attributes #[[ATTRS]] = { "nvvm.minctasm"="10" }11}12