mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 19:56:05 +00:00

V3 has been deprecated for a while as well, so it can safely be removed like V2 was removed. - [Clang] Set minimum code object version to 4 - [lld] Fix tests using code object v3 - Remove code object V3 from the AMDGPU backend, and delete or port v3 tests to v4. - Update docs to make it clear V3 can no longer be emitted.
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
// Create module flag for code object version.
|
|
|
|
// RUN: %clang_cc1 -fcuda-is-device -triple amdgcn-amd-amdhsa -emit-llvm \
|
|
// RUN: -o - %s | FileCheck %s -check-prefix=V4
|
|
|
|
// RUN: %clang_cc1 -fcuda-is-device -triple amdgcn-amd-amdhsa -emit-llvm \
|
|
// RUN: -mcode-object-version=4 -o - %s | FileCheck -check-prefix=V4 %s
|
|
|
|
// RUN: %clang_cc1 -fcuda-is-device -triple amdgcn-amd-amdhsa -emit-llvm \
|
|
// RUN: -mcode-object-version=5 -o - %s | FileCheck -check-prefix=V5 %s
|
|
|
|
// RUN: %clang_cc1 -fcuda-is-device -triple amdgcn-amd-amdhsa -emit-llvm \
|
|
// RUN: -mcode-object-version=none -o - %s | FileCheck %s -check-prefix=NONE
|
|
|
|
// RUN: not %clang_cc1 -fcuda-is-device -triple amdgcn-amd-amdhsa -emit-llvm \
|
|
// RUN: -mcode-object-version=4.1 -o - %s 2>&1| FileCheck %s -check-prefix=INV
|
|
|
|
// V4: !{{.*}} = !{i32 1, !"amdgpu_code_object_version", i32 400}
|
|
// V5: !{{.*}} = !{i32 1, !"amdgpu_code_object_version", i32 500}
|
|
// NONE-NOT: !{{.*}} = !{i32 1, !"amdgpu_code_object_version",
|
|
// INV: error: invalid value '4.1' in '-mcode-object-version=4.1'
|