Adds support for the module level assembly in the LLVM IR dialect. --------- Co-authored-by: Tobias Gysi <tobias.gysi@nextsilicon.com>
7 lines
169 B
MLIR
7 lines
169 B
MLIR
// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s
|
|
|
|
module attributes {llvm.module_asm = ["foo", "bar"]} {}
|
|
|
|
// CHECK: module asm "foo"
|
|
// CHECK: module asm "bar"
|