brintos

brintos / llvm-project-archived public Read only

0
0
Text · 168 B · 52b4728 Raw
7 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Wno-unused-but-set-variable -Werror2void bork(void) {3  char * volatile p = 0;4  volatile int cc = 0;5  p += cc;6}7