diff options
Diffstat (limited to 'test/Sema/builtins-arm64.c')
-rw-r--r-- | test/Sema/builtins-arm64.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Sema/builtins-arm64.c b/test/Sema/builtins-arm64.c index 113f4fc302da..2779984680f4 100644 --- a/test/Sema/builtins-arm64.c +++ b/test/Sema/builtins-arm64.c @@ -22,3 +22,10 @@ void test_memory_barriers() { __builtin_arm_dsb(17); // expected-error {{argument should be a value from 0 to 15}} __builtin_arm_isb(18); // expected-error {{argument should be a value from 0 to 15}} } + +void test_prefetch() { + __builtin_arm_prefetch(0, 2, 0, 0, 0); // expected-error {{argument should be a value from 0 to 1}} + __builtin_arm_prefetch(0, 0, 3, 0, 0); // expected-error {{argument should be a value from 0 to 2}} + __builtin_arm_prefetch(0, 0, 0, 2, 0); // expected-error {{argument should be a value from 0 to 1}} + __builtin_arm_prefetch(0, 0, 0, 0, 2); // expected-error {{argument should be a value from 0 to 1}} +} |