mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 14:58:59 -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);
|
|
}
|