mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
a76ecb87cf
- Add target id support (https://clang.llvm.org/docs/ClangOffloadBundler.html#target-id) - Add code object v4 support (https://llvm.org/docs/AMDGPUUsage.html#elf-code-object) - Add kernarg_size to kernel descriptor - Change trap handler ABI to no longer move queue pointer into s[0:1] - Cleanup ELF definitions - Add V2, V3, V4 suffixes to make a clear distinction for code object version - Consolidate note names Differential Revision: https://reviews.llvm.org/D95638
22 lines
450 B
LLVM
22 lines
450 B
LLVM
; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 --amdhsa-code-object-version=4 < %s 2>&1 | FileCheck --check-prefixes=ERR %s
|
|
|
|
; ERR: error: xnack setting of 'func2' function does not match module xnack setting
|
|
|
|
define void @func0() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
define void @func1() #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
define void @func2() #1 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { "target-features"="-xnack" }
|
|
attributes #1 = { "target-features"="+xnack" }
|