xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/builtin-nanf.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
2*f4a2713aSLionel Sambuc // RUN: grep 'float 0x7FF8000000000000, float 0x7FF8000000000000, float 0x7FF8000020000000, float 0x7FF8000000000000, float 0x7FF80001E0000000, float 0x7FF8001E00000000, float 0x7FF801E000000000, float 0x7FF81E0000000000, float 0x7FF9E00000000000, float 0x7FFFFFFFE0000000' %t
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc float n[] = {
5*f4a2713aSLionel Sambuc   __builtin_nanf("0"),
6*f4a2713aSLionel Sambuc   __builtin_nanf(""),
7*f4a2713aSLionel Sambuc   __builtin_nanf("1"),
8*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fc00000"),
9*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fc0000f"),
10*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fc000f0"),
11*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fc00f00"),
12*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fc0f000"),
13*f4a2713aSLionel Sambuc   __builtin_nanf("0x7fcf0000"),
14*f4a2713aSLionel Sambuc   __builtin_nanf("0xffffffff"),
15*f4a2713aSLionel Sambuc };
16