mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
9 lines
134 B
C++
9 lines
134 B
C++
// RUN: %clang_cc1 -fsyntax-only %s -verify
|
|
// PR5679
|
|
|
|
enum X { A = 3 };
|
|
|
|
void Test() {
|
|
char ch;
|
|
__builtin_prefetch(&ch, 0, A);
|
|
}
|