brintos

brintos / llvm-project-archived public Read only

0
0
Text · 171 B · 28218be Raw
10 lines · c
1// RUN: %clang_cc1 -Wall -ffreestanding -fsyntax-only -fwrapv -verify %s2 3int test(void) {4  int i;5  i = -1 << 1; // no-warning6  return i;7}8 9// expected-no-diagnostics10