mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 09:06:43 +00:00
11 lines
161 B
C++
11 lines
161 B
C++
// RUN: %clang_cc1 -fsyntax-only %s -verify
|
|
// expected-no-diagnostics
|
|
// PR5679
|
|
|
|
enum X { A = 3 };
|
|
|
|
void Test() {
|
|
char ch;
|
|
__builtin_prefetch(&ch, 0, A);
|
|
}
|