git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39829 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-07-13 20:18:44 +00:00
Родитель a63ff1486d
Коммит 8da1cb6339
2 изменённых файлов: 18 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,12 @@
// RUN: clang -emit-llvm %s
float test1(int cond, float a, float b)
{
return cond ? a : b;
}
/* this will fail for now...
double test2(int cond, float a, double b)
{
return cond ? a : b;
}
*/

Просмотреть файл

@ -0,0 +1,6 @@
// RUN: clang -emit-llvm %s
void *test(int i)
{
return (void *)i;
}