xref: /llvm-project/clang/test/CodeGen/noexceptionsfpmath.c (revision 0d501f38f348cf046d40c9baee12f0c5145b6d8c)
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2 
3 // CHECK-LABEL: main
4 // CHECK: attributes #0 = {{.*}}"no-trapping-math"="true"{{.*}}
5 
main(void)6 int main(void) {
7   return 0;
8 }
9