diff options
author | Rhys Perry <[email protected]> | 2019-09-25 11:48:04 +0100 |
---|---|---|
committer | Rhys Perry <[email protected]> | 2019-09-26 11:08:47 +0100 |
commit | 3c966fd688c1b8eb846fd8675275c33a08786b07 (patch) | |
tree | 350c9503d4f523071a798a708281d4e5b7288377 /src/amd/vulkan/radv_pipeline.c | |
parent | ec8ced912337d57f9643b579201f5f1d637600e9 (diff) |
aco,radv: rename record_llvm_ir/llvm_ir_string to record_ir/ir_string
Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_pipeline.c')
-rw-r--r-- | src/amd/vulkan/radv_pipeline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 21d37313cb2..c107d551138 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -5241,7 +5241,7 @@ VkResult radv_GetPipelineExecutableInternalRepresentationsKHR( } ++p; - /* LLVM IR */ + /* backend IR */ if (p < end) { p->isText = true; if (shader->aco_used) { @@ -5251,7 +5251,7 @@ VkResult radv_GetPipelineExecutableInternalRepresentationsKHR( desc_copy(p->name, "LLVM IR"); desc_copy(p->description, "The LLVM IR after some optimizations"); } - if (radv_copy_representation(p->pData, &p->dataSize, shader->llvm_ir_string) != VK_SUCCESS) + if (radv_copy_representation(p->pData, &p->dataSize, shader->ir_string) != VK_SUCCESS) result = VK_INCOMPLETE; } ++p; |