forked from KhronosGroup/SPIRV-LLVM-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpNot.spvasm
More file actions
20 lines (19 loc) · 671 Bytes
/
OpNot.spvasm
File metadata and controls
20 lines (19 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; REQUIRES: spirv-as
; RUN: spirv-as --target-env spv1.0 -o %t.spv %s
; RUN: spirv-val %t.spv
; RUN: llvm-spirv -r -o - %t.spv | llvm-dis | FileCheck %s
OpCapability Addresses
OpCapability Kernel
OpMemoryModel Physical32 OpenCL
OpEntryPoint Kernel %1 "testNot"
OpName %a "a"
%void = OpTypeVoid
%uint = OpTypeInt 32 0
%5 = OpTypeFunction %void %uint
%1 = OpFunction %void None %5
%a = OpFunctionParameter %uint
%6 = OpLabel
%7 = OpNot %uint %a
OpReturn
OpFunctionEnd
; CHECK: xor i32 {{%a, -1|-1, %a}}