Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s
      2 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
      3 
      4 void __attribute__((intel_ocl_bicc)) f1(void);
      5 
      6 void f2(void) {
      7   f1();
      8 // CHECK: call intel_ocl_bicc void @f1()
      9 }
     10 
     11 // CHECK: declare intel_ocl_bicc void @f1()
     12