IRA: Ignore debug insns for uses in split_live_ranges_for_shrink_wrap. [PR116179]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / taint-divisor-2.c
blob770258418fa5d103593c31c579751e2e2d7802a7
1 #include "analyzer-decls.h"
3 __attribute__ ((tainted_args))
4 double pr110700 (double x, double y)
6 /* Ideally we'd complain here with -Wanalyzer-tainted-divisor, but
7 until we track conditions on floating point values, we can't check to
8 see if they've been checked against zero. */
9 return x / y;