Home | History | Annotate | Download | only in CodeGen
      1 // REQUIRES: arm-registered-target
      2 // RUN: %clang_cc1 -Wall -Werror -triple thumbv7-eabi -target-cpu cortex-a8 -O3 -emit-llvm -o - %s | FileCheck %s
      3 
      4 void *f0()
      5 {
      6   return __builtin_thread_pointer();
      7 }
      8 
      9 void f1(char *a, char *b) {
     10 	__clear_cache(a,b);
     11 }
     12 
     13 // CHECK: call {{.*}} @__clear_cache
     14