[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / mlir / test / Target / LLVMIR / tune-cpu.mlir
blobc7969f5eb4db03b576627516017d2981daaedfd2
1 // RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s
3 // CHECK: define void @tune_cpu_x86() #[[ATTRSX86:.*]] {
4 // CHECK: define void @tune_cpu_arm() #[[ATTRSARM:.*]] {
5 // CHECK: attributes #[[ATTRSX86]] = { "tune-cpu"="pentium4" }
6 // CHECK: attributes #[[ATTRSARM]] = { "tune-cpu"="neoverse-n1" }
8 llvm.func @tune_cpu_x86() attributes {tune_cpu = "pentium4"} {
9   llvm.return
12 llvm.func @tune_cpu_arm() attributes {tune_cpu = "neoverse-n1"} {
13   llvm.return