mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

the builtin as void __clear_cache(...) to workaround this, which appears to match what GCC does. llvm-svn: 108487
12 lines
243 B
C
12 lines
243 B
C
// RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify -DTEST0 %s
|
|
// RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify -DTEST1 %s
|
|
|
|
#ifdef TEST0
|
|
void __clear_cache(char*, char*);
|
|
#endif
|
|
|
|
#ifdef TEST1
|
|
void __clear_cache(void*, void*);
|
|
#endif
|
|
|