Commit 1fda57cb by Tom de Vries Committed by Tom de Vries

Fix call arguments mismatch in gcc.c-torture/compile/pr82052.c

2017-09-04  Tom de Vries  <tom@codesourcery.com>

	PR tree-optimization/82052
	* gcc.c-torture/compile/pr82052.c (fn2): Add parameters corresponding to
	call in fn11.

From-SVN: r251642
parent ca1150f0
2017-09-04 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/82052
* gcc.c-torture/compile/pr82052.c (fn2): Add parameters corresponding to
call in fn11.
2017-09-04 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/81981
......
......@@ -20,7 +20,7 @@ uint16_t t35[][7][2];
static uint8_t t41;
char z[][8][3];
char fn1(char p1, int p2) { return p1 < 0 ?: p1 >> p2; }
short fn2() {}
short fn2(int a, uint16_t b) {}
void fn3(uint8_t p1) { d = d >> 8 ^ c[(d ^ p1) & 5]; }
void fn4(uint32_t p1, int p2) {
int e;
......
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