Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -triple thumbv7m-apple-darwin-eabi -ast-dump %s | FileCheck %s
      2 
      3 // CHECK: CallExpr {{.*}} 'int'
      4 
      5 void foo(int a, int *b) {
      6   do {
      7   } while (__builtin_arm_strex(a, b));
      8 }
      9