[RISCV] Fix the code alignment for GroupFloatVectors. NFC
[llvm-project.git] / mlir / test / Conversion / SPIRVToLLVM / module-ops-to-llvm.mlir
blobc75214920b5ac130eab1fb1e8f216007114fe578
1 // RUN: mlir-opt -convert-spirv-to-llvm %s | FileCheck %s
3 //===----------------------------------------------------------------------===//
4 // spv.module
5 //===----------------------------------------------------------------------===//
7 // CHECK: module
8 spv.module Logical GLSL450 {}
10 // CHECK: module @foo
11 spv.module @foo Logical GLSL450 {}
13 // CHECK: module
14 spv.module Logical GLSL450 requires #spv.vce<v1.0, [Shader], [SPV_KHR_16bit_storage]> {}
16 // CHECK: module
17 spv.module Logical GLSL450 {
18         // CHECK-LABEL: llvm.func @empty()
19   spv.func @empty() -> () "None" {
20                 // CHECK: llvm.return
21     spv.Return
22   }