mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 23:57:30 -04:00
10 lines
351 B
Common Lisp
10 lines
351 B
Common Lisp
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=NORMAL
|
|
// RUN: %clang_cc1 %s -emit-llvm -cl-no-signed-zeros -o - | FileCheck %s -check-prefix=NO-SIGNED-ZEROS
|
|
|
|
float signedzeros(float a) {
|
|
return a;
|
|
}
|
|
|
|
// CHECK: attributes
|
|
// NORMAL: "no-signed-zeros-fp-math"="false"
|
|
// NO-SIGNED-ZEROS: "no-signed-zeros-fp-math"="true"
|