aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/ptr-cmp-const-trunc.cl
blob: f70eeb7388345463df370541784a866da91e0ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
//RUN: %clang_analyze_cc1 -triple amdgcn-unknown-unknown -analyzer-checker=core -verify %s
// expected-no-diagnostics

#include <stdint.h>

void bar(__global int *p) __attribute__((nonnull(1)));

void foo(__global int *p) {
  if ((uint64_t)p <= 1UL << 32)
    bar(p); // no-warning
}