This reverts commit a1e9b7e646b76bf844e8a9a101ebd27de11992ff This relands commit d010ec6af8162a8ae4e42d2cac5282f83db0ce07 No modifications from the original patch. It was determined that the ubsan build failure was happening even after the revert, some examples: https://lab.llvm.org/buildbot/#/builders/159/builds/4477 https://lab.llvm.org/buildbot/#/builders/159/builds/4478 https://lab.llvm.org/buildbot/#/builders/159/builds/4479
8 lines
274 B
C
8 lines
274 B
C
// RUN: %clang_cc1 -triple x86_64-unknown-linux -fsanitize=realtime %s -emit-llvm -o - %s | FileCheck %s
|
|
|
|
float process(float *a) [[clang::nonblocking]] { return *a; }
|
|
|
|
// CHECK-LABEL: @process{{.*}}#0 {
|
|
// CHECK: attributes #0 = {
|
|
// CHECK-SAME: {{.*sanitize_realtime.*}}
|