blob: 7de91f27df6e91b8eadf62abbdb6640e30a5c5e7 (
plain)
1
2
3
4
5
6
|
// RUN: clang -ast-dump %s 2>&1 | grep ImplicitCastExpr | count 2
int foo (double x, long double y) {
// There needs to be an implicit cast on x here.
return __builtin_isgreater(x, y);
}
|