summaryrefslogtreecommitdiff
path: root/support/regression/tests/bug1399290.c
blob: d8847781e696618e6c2aeb10bac53417e9885fcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* bug1399290.c
 */
#include <testfwk.h>

unsigned long Left = 0x12345678;

void
testLongPlus(void)
{
	static unsigned long Result;
	static unsigned long Rhs = 0x87654321;
	static unsigned long *Lhs = &Left;

	Result = *Lhs + Rhs;
	ASSERT (Result == 0x99999999);
}