brintos

brintos / llvm-project-archived public Read only

0
0
Text · 313 B · a293191 Raw
11 lines · plain
1// RUN: mlir-opt %s -convert-gpu-to-nvvm='allowed-dialects=test' -verify-diagnostics2 3// expected-error @+1 {{dialect does not implement ConvertToLLVMPatternInterface: test}}4gpu.module @test_module_1 {5  func.func @test(%0 : index) -> index {6    %1 = test.increment %0 : index7    func.return %1 : index8  }9}10 11