mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 01:20:04 -04: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);
|
|
}
|