Alexander Shaposhnikov 3402a1a4d2
[Clang] Enable nsan instrumentation pass (#97359)
Enable nsan instrumentation pass
2024-07-02 16:57:30 -07:00

8 lines
234 B
C

// RUN: %clang_cc1 -triple x86_64 -emit-llvm -o - -fsanitize=numerical %s | FileCheck %s
// CHECK: Function Attrs: noinline nounwind optnone sanitize_numerical_stability
float add(float x, float y) {
float z = x + y;
return z;
}