This adds -no-opaque-pointers to clang tests whose output will change when opaque pointers are enabled by default. This is intended to be part of the migration approach described in https://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9. The patch has been produced by replacing %clang_cc1 with %clang_cc1 -no-opaque-pointers for tests that fail with opaque pointers enabled. Worth noting that this doesn't cover all tests, there's a remaining ~40 tests not using %clang_cc1 that will need a followup change. Differential Revision: https://reviews.llvm.org/D123115
22 lines
642 B
Common Lisp
22 lines
642 B
Common Lisp
// REQUIRES: amdgpu-registered-target
|
|
// RUN: %clang_cc1 -no-opaque-pointers -triple amdgcn-unknown-unknown -S -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK-LABEL: @test_builtin_clz(
|
|
// CHECK: tail call i32 @llvm.ctlz.i32(i32 %a, i1 true)
|
|
void test_builtin_clz(global int* out, int a)
|
|
{
|
|
*out = __builtin_clz(a);
|
|
}
|
|
|
|
// CHECK-LABEL: @test_builtin_clzl(
|
|
// CHECK: tail call i64 @llvm.ctlz.i64(i64 %a, i1 true)
|
|
void test_builtin_clzl(global long* out, long a)
|
|
{
|
|
*out = __builtin_clzl(a);
|
|
}
|
|
|
|
// CHECK: tail call i8 addrspace(5)* @llvm.frameaddress.p5i8(i32 0)
|
|
void test_builtin_frame_address(int *out) {
|
|
*out = __builtin_frame_address(0);
|
|
}
|