You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
// REQUIRES: amdgpu-registered-target
|
|
// RUN: %clang_cc1 -triple amdgcn-unknown-unknown -target-cpu tonga -S -emit-llvm -o - %s | FileCheck %s
|
|
|
|
typedef unsigned long ulong;
|
|
|
|
|
|
// CHECK-LABEL: @test_s_memrealtime
|
|
// CHECK: call i64 @llvm.amdgcn.s.memrealtime()
|
|
void test_s_memrealtime(global ulong* out)
|
|
{
|
|
*out = __builtin_amdgcn_s_memrealtime();
|
|
}
|