mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 15:56:07 +00:00

- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
16 lines
655 B
C
16 lines
655 B
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm -o %t %s
|
|
// RUN: grep 'float 0x7FF8000000000000, float 0x7FF8000000000000, float 0x7FF8000020000000, float 0x7FF8000000000000, float 0x7FF80001E0000000, float 0x7FF8001E00000000, float 0x7FF801E000000000, float 0x7FF81E0000000000, float 0x7FF9E00000000000, float 0x7FFFFFFFE0000000' %t
|
|
|
|
float n[] = {
|
|
__builtin_nanf("0"),
|
|
__builtin_nanf(""),
|
|
__builtin_nanf("1"),
|
|
__builtin_nanf("0x7fc00000"),
|
|
__builtin_nanf("0x7fc0000f"),
|
|
__builtin_nanf("0x7fc000f0"),
|
|
__builtin_nanf("0x7fc00f00"),
|
|
__builtin_nanf("0x7fc0f000"),
|
|
__builtin_nanf("0x7fcf0000"),
|
|
__builtin_nanf("0xffffffff"),
|
|
};
|