Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / multdi-1.c
blob1ffcc578e516617c0e73000c13aab120c7b51b80
1 /* PR target/9348 */
3 #define u_l_l unsigned long long
4 #define l_l long long
6 l_l mpy_res;
8 u_l_l mpy (long a, long b)
10 return (u_l_l) a * (u_l_l) b;
13 int main(void)
15 mpy_res = mpy(1,-1);
16 if (mpy_res != -1LL)
17 abort ();
18 return 0;