summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ms-volatile-aarch64.c
blob: 2a139f5139fab8e471b74449ed4defd8dda6a8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// REQUIRES: aarch64-registered-target
// RUN: %clang_cc1 -triple aarch64-win32 -emit-llvm -fms-extensions -fms-volatile -o - < %s | FileCheck %s

void test1(int volatile *p, int v) {
  __iso_volatile_store32(p, v);
  // CHECK-LABEL: @test1
  // CHECK: store volatile {{.*}}, {{.*}}
}
int test2(const int volatile *p) {
  return __iso_volatile_load32(p);
  // CHECK-LABEL: @test2
  // CHECK: load volatile {{.*}}
}