blob: 4ee96ce3277ebfc5016e1bb78764c42461e53478 [file] [log] [blame]
Tim Northovera6306fc2013-10-29 12:32:58 +00001// RUN: %clang_cc1 -triple thumbv7m-apple-darwin-eabi -ast-dump %s | FileCheck %s
2
3// CHECK: CallExpr {{.*}} 'int'
4
5void foo(int a, int *b) {
6 do {
7 } while (__builtin_arm_strex(a, b));
8}