Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple x86_64-linux-unknown -emit-llvm -o - %s -fsanitize=safe-stack | FileCheck -check-prefix=SP %s
      2 
      3 __attribute__((no_sanitize("safe-stack")))
      4 int foo(int *a) {  return *a; }
      5 
      6 // SP-NOT: attributes #{{.*}} = { {{.*}}safestack{{.*}} }
      7