usual-float.c revision 27b837c3b884b27279f7550361ef73b9896c7510
1// RUN: clang %s -fsyntax-only
2
3void foo(int dir, int n, int tindex) {
4  const float PI = 3.142;
5float ang = (float) tindex * (-dir*2.0f*PI/n);
6}
7