brintos

brintos / llvm-project-archived public Read only

0
0
Text · 242 B · 66e045b Raw
8 lines · c
1// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsanitize=null,alignment,object-size,vptr -emit-llvm %s -o - | FileCheck %s2 3// CHECK: @volatile_null_deref4void volatile_null_deref(volatile int *p) {5  // CHECK-NOT: call{{.*}}ubsan6  *p;7}8