blob: 14f6411b35619a7d3c1d9afe4ae960764532e079 [file] [log] [blame]
Yaxun Liu79c99fb2016-07-08 20:28:29 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=NORMAL
2// RUN: %clang_cc1 %s -emit-llvm -cl-no-signed-zeros -o - | FileCheck %s -check-prefix=NO-SIGNED-ZEROS
3
4float signedzeros(float a) {
5 return a;
6}
7
8// CHECK: attributes
9// NORMAL: "no-signed-zeros-fp-math"="false"
10// NO-SIGNED-ZEROS: "no-signed-zeros-fp-math"="true"