blob: 44eb176b50d39cecfa4c82f87f669bb7cdb6faf0 (
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
|
/* Copyright (C) 2004 Free Software Foundation.
PR other/15526
Verify correct overflow checking with -ftrapv.
Written by Falk Hueffner, 20th May 2004. */
/* { dg-do run } */
/* { dg-options "-ftrapv" } */
__attribute__((noinline)) int
mulv(int a, int b)
{
return a * b;
}
int
main()
{
mulv( 0, 0);
mulv( 0, -1);
mulv(-1, 0);
mulv(-1, -1);
return 0;
}
|