Sign in
dawn
/
dawn
/
f76df6beee5cc510d5f7101560b63e418d1dbbf4
/
.
/
test
/
tint
/
expressions
/
literals
/
intmin.wgsl.expected.glsl
blob: 81faa0ca8b83de60bb149e13a7adb2a8e2af5d13 [
file
] [
log
] [
blame
]
#version 310 es
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
int
add_int_min_explicit
()
{
int
a
=
(-
2147483647
-
1
);
int
b
=
(
a
+
1
);
int
c
=
-
2147483647
;
return
c
;
}