blob: c11f17e38b746265e901d303c42214c45fdb0e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* bug-3093.c
An optimization used an incorrect cast to bool.
*/
#include <testfwk.h>
#pragma disable_warning 283
#include <stdint.h>
#include <string.h>
#define UINT8 uint8_t
#define UINT16 uint16_t
#define U_LESS_THAN(A, B) ((A) - (B) & 0x8000u)
#define DISTANCE(A, B) (U_LESS_THAN(A, B) ? (B - A) : (A - B))
struct Sprite {
UINT8 anim_accum_ticks;
UINT8 anim_speed;
UINT8 anim_frame;
UINT8 frame;
UINT16 x;
UINT16 y;
};
struct Sprite spr, tgt;
struct Sprite *THIS, *scroll_target;
#define DIST_ACTION 10
int mputs(const char *s)
{
ASSERT (!strcmp (s, "no action"));
}
void test() {
if(U_LESS_THAN(DISTANCE(THIS->x + 8, scroll_target->x + 8), DIST_ACTION)) mputs("action"); else mputs("no action");
}
void
testBug(void){
spr.x = 10, THIS = &spr;
tgt.x = 30, scroll_target = &tgt;
test();
spr.x = 5;
tgt.x = 5;
test();
}
|