1// RUN: mlir-translate -no-implicit-module -test-spirv-roundtrip %s | FileCheck %s 2 3spirv.module Logical GLSL450 requires #spirv.vce<v1.0, [Shader], []> { 4 spirv.func @foo() -> () "None" { 5 spirv.Return 6 } 7 spirv.EntryPoint "GLCompute" @foo 8 // CHECK: spirv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5 9 spirv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5 10} 11