1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[openacc] Rename generated file from ACC.cpp.inc to ACC.inc to match D92955

This patch rename the tablegen generated file ACC.cpp.inc to ACC.inc in order
to match what was done in D92955. This file is included in header file as well as .cpp
file so it make more sense.

Reviewed By: sameeranjoshi

Differential Revision: https://reviews.llvm.org/D93485
This commit is contained in:
Valentin Clement 2021-01-14 14:19:35 -05:00 committed by clementval
parent f8c8db7132
commit 53b440883c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
set(LLVM_TARGET_DEFINITIONS ACC.td)
tablegen(LLVM ACC.h.inc --gen-directive-decl)
tablegen(LLVM ACC.cpp.inc --gen-directive-gen)
tablegen(LLVM ACC.inc --gen-directive-gen)
add_public_tablegen_target(acc_gen)

View File

@ -9,7 +9,7 @@ tablegen("ACC") {
tablegen("ACCcpp") {
visibility = [ ":acc_gen" ]
args = [ "-gen-directive-gen" ]
output_name = "ACC.cpp.inc"
output_name = "ACC.inc"
td_file = "ACC.td"
}