From ef099f4f83a3f0e078567cc5b795652ceffe47dc Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Fri, 14 Sep 2018 20:18:33 -0500 Subject: [PATCH] Update test to reflect that operands of % may be negative. --- Tests/Deviance/D7.6.1.3.CC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Deviance/D7.6.1.3.CC b/Tests/Deviance/D7.6.1.3.CC index 1cf342e..2b97de0 100644 --- a/Tests/Deviance/D7.6.1.3.CC +++ b/Tests/Deviance/D7.6.1.3.CC @@ -7,7 +7,7 @@ void main(void) { int i; -i = 4%(-1); +i = 4%0; printf("Failed Deviance Test 7.6.1.3\n"); }