mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 13:36:08 +00:00

Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
10 lines
256 B
C
10 lines
256 B
C
// REQUIRES: arm-registered-target
|
|
// RUN: %clang_cc1 -triple armv7-apple-darwin9 -emit-llvm -w -o - %s | FileCheck %s
|
|
|
|
void clear(void *ptr, void *ptr2) {
|
|
// CHECK: clear
|
|
// CHECK: load ptr, ptr
|
|
// CHECK: load ptr, ptr
|
|
__clear_cache(ptr, ptr2);
|
|
}
|