Skip to content

Commit cc823de

Browse files
committed
[Review] More consistent naming for Comgr's cached offload bundle actions
1 parent e3dc0a4 commit cc823de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

amd/comgr/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ option(COMGR_BUILD_SHARED_LIBS "Build the shared library"
7070

7171
set(SOURCES
7272
src/comgr-cache.cpp
73-
src/comgr-cache-bundler-command.cpp
7473
src/comgr-cache-command.cpp
7574
src/comgr-clang-command.cpp
7675
src/comgr-compiler.cpp
@@ -86,6 +85,7 @@ set(SOURCES
8685
src/comgr-spirv-command.cpp
8786
src/comgr-symbol.cpp
8887
src/comgr-symbolizer.cpp
88+
src/comgr-unbundle-command.cpp
8989
src/time-stat/time-stat.cpp)
9090

9191
if(COMGR_BUILD_SHARED_LIBS)

amd/comgr/src/comgr-compiler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
******************************************************************************/
3838

3939
#include "comgr-compiler.h"
40-
#include "comgr-cache-bundler-command.h"
4140
#include "comgr-cache.h"
4241
#include "comgr-clang-command.h"
4342
#include "comgr-device-libs.h"
4443
#include "comgr-diagnostic-handler.h"
4544
#include "comgr-env.h"
4645
#include "comgr-spirv-command.h"
46+
#include "comgr-unbundle-command.h"
4747
#include "lld/Common/CommonLinkerContext.h"
4848
#include "lld/Common/Driver.h"
4949
#include "clang/CodeGen/CodeGenAction.h"

amd/comgr/src/comgr-cache-bundler-command.cpp renamed to amd/comgr/src/comgr-unbundle-command.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
******************************************************************************/
3838

39-
#include <comgr-cache-bundler-command.h>
39+
#include <comgr-unbundle-command.h>
4040

4141
#include <clang/Driver/OffloadBundler.h>
4242
#include <llvm/BinaryFormat/Magic.h>

amd/comgr/src/comgr-cache-bundler-command.h renamed to amd/comgr/src/comgr-unbundle-command.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
*
3434
******************************************************************************/
3535

36-
#ifndef COMGR_CACHE_BUNDLER_COMMAND_H
37-
#define COMGR_CACHE_BUNDLER_COMMAND_H
36+
#ifndef COMGR_BUNDLER_COMMAND_H
37+
#define COMGR_BUNDLER_COMMAND_H
3838

3939
#include <comgr-cache-command.h>
4040

0 commit comments

Comments
 (0)