aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/int128-nocrash.c
blob: 457254ce50caf03255c81f78858e230dd106d5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_analyze_cc1 -analyzer-checker=optin.portability.UnixAPI \
// RUN:    -triple x86_64-pc-linux-gnu -x c %s

// Don't crash!
// expected-no-diagnostics
const __int128_t a = ( (__int128_t)1 << 64 );
const _BitInt(72) b = ( 1 << 72 );

void int128() {
  2 >> a;
}

void withbitint() {
  2 >> b;
}