blob: b3ed1059223e2c6801301653d07d18b7647176e1 (
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
26
27
|
/* $NetBSD: msg_142.c,v 1.10 2023/04/11 00:03:42 rillig Exp $ */
# 3 "msg_142.c"
// Test for message: floating point overflow on operator '%s' [142]
/* lint1-extra-flags: -X 351 */
/*
* VAX has floating point formats with different limits than the other
* platforms, which all implement IEEE 754.
*/
/* xlint1-skip-if: vax */
/*
* For 96-bit and 128-bit floating point numbers, a different number of
* multipliers is needed to produce an overflow.
*/
/* expect+2: warning: floating point overflow on operator '*' [142] */
/* expect+1: warning: floating point overflow on operator '*' [142] */
double dbl = 1e100 * 1e100 * 1e100 * 1e100 * 1e100;
/*
* Ensure that an addition in the complex number space doesn't generate
* wrong warnings. Lint doesn't model complex constants accurately.
*/
double _Complex complex_sum = 1e308 + 1e308i;
|