remove dangling spaces
This commit is contained in:
@@ -59,10 +59,10 @@ void c_char_gt_lit1(unsigned char expected_result)
|
||||
|
||||
if(char0 > 0x7e)
|
||||
result |= 0x10;
|
||||
|
||||
|
||||
if(char0 > 0x7f)
|
||||
result |= 0x20;
|
||||
|
||||
|
||||
if(result != expected_result)
|
||||
failures++;
|
||||
}
|
||||
@@ -132,10 +132,10 @@ void c_int_gt_lit1(unsigned char expected_result)
|
||||
|
||||
if(int0 > 0x0101)
|
||||
result |= 0x10;
|
||||
|
||||
|
||||
if(int0 > 0x01ff)
|
||||
result |= 0x20;
|
||||
|
||||
|
||||
if(int0 > 0x0200)
|
||||
result |= 0x40;
|
||||
|
||||
@@ -220,10 +220,10 @@ void c_int_gt_lit2(unsigned char expected_result)
|
||||
|
||||
if(int0 > -0x0101)
|
||||
result |= 0x10;
|
||||
|
||||
|
||||
if(int0 > -0x0100)
|
||||
result |= 0x20;
|
||||
|
||||
|
||||
if(int0 > -0xff)
|
||||
result |= 0x40;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user