summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/prefetch-enum.cpp
blob: 829321fb0e91d10b65773bf2a2ea9d62377f012e (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -fsyntax-only %s -verify
// PR5679

enum X { A = 3 };

void Test() {
  char ch;
  __builtin_prefetch(&ch, 0, A);
}
OpenPOWER on IntegriCloud