You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -ast-dump %s 2>&1 | grep ImplicitCastExpr | count 4
|
|
|
|
int foo (double x, long double y) {
|
|
// There needs to be an implicit cast on x here.
|
|
return __builtin_isgreater(x, y);
|
|
}
|