blob: b353eb1eed60ea06a96ac74179828069cb800fb7 [file] [log] [blame]
John Kessenich18958f62017-03-30 23:32:21 -06001float4 main() : SV_TARGET
2{
3 if (!(0) && (0) || (!1))
4 return 0.0.xxxx;
5 if (0)
6 return 0.0.xxxx;
7 if (!(bool)0)
8 return 0.0.xxxx;
9 if (!0)
10 return 0.0.xxxx;
11 if (!(bool)1)
12 return 0.0.xxxx;
13 if (!1)
14 return 0.0.xxxx;
John Kessenichc49b4ef2017-05-12 15:25:41 -060015 if (0 || 1)
16 return 0.0.xxxx;
17 if (1 && 0)
18 return 0.0.xxxx;
19 if (1 || false)
20 return 0.0.xxxx;
21 if (true && 1)
22 return 0.0.xxxx;
John Kessenich18958f62017-03-30 23:32:21 -060023}