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.
14 lines
341 B
14 lines
341 B
4 months ago
|
// RUN: %clang -target mipsel-unknown-linux -mnan=legacy -emit-llvm -S %s -o - | FileCheck %s
|
||
|
// CHECK: float 0x7FF4000000000000, float 0x7FF8000000000000
|
||
|
// CHECK: double 0x7FF4000000000000, double 0x7FF8000000000000
|
||
|
|
||
|
float f[] = {
|
||
|
__builtin_nan(""),
|
||
|
__builtin_nans(""),
|
||
|
};
|
||
|
|
||
|
double d[] = {
|
||
|
__builtin_nan(""),
|
||
|
__builtin_nans(""),
|
||
|
};
|