brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · 7aedaa3 Raw
8 lines · c
1// RUN: %clang_cc1 -triple x86_64 -emit-llvm -o - -fsanitize=numerical %s | FileCheck %s2 3// CHECK: Function Attrs: noinline nounwind optnone sanitize_numerical_stability4float add(float x, float y) {5  float z = x + y;6  return z;7}8