Commit eb9feb52 by Kyrylo Tkachov Committed by Kyrylo Tkachov

[ARM][1/4] PR target/65932: Add testcase

	PR target/65932
	PR target/67714
	* gcc.c-torture/execute/pr67714.c: New test.

From-SVN: r233131
parent 8644f49f
2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/65932
PR target/67714
* gcc.c-torture/execute/pr67714.c: New test.
2016-02-04 Ilya Enkovich <enkovich.gnu@gmail.com>
PR target/69454
......
unsigned int b;
int c;
signed char
fn1 ()
{
signed char d;
for (int i = 0; i < 1; i++)
d = -15;
return d;
}
int
main (void)
{
for (c = 0; c < 1; c++)
b = 0;
char e = fn1 ();
signed char f = e ^ b;
volatile int g = (int) f;
if (g != -15)
__builtin_abort ();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment