Tests: Non-determinancy: Add back in the IntMin tests.

This commit is contained in:
John Kessenich
2017-10-28 12:55:02 -06:00
parent a63622286f
commit 5866e67b8d
5 changed files with 85 additions and 2 deletions

12
Test/constFoldIntMin.frag Normal file
View File

@@ -0,0 +1,12 @@
#version 460 core
#extension GL_AMD_gpu_shader_int16 : enable
#extension GL_ARB_gpu_shader_int64 : enable
void a(){
int16_t u = -32768S / -1S; // SHRT_MIN
int v = -2147483648 / -1; // INT_MIN
int64_t w = -9223372036854775808L / -1L; // LLONG_MIN
int16_t x = -32768S % -1S; // SHRT_MIN
int y = -2147483648 % -1; // INT_MIN
int64_t z = -9223372036854775808L % -1L; // LLONG_MIN
}