Skip to content

Commit ed72581

Browse files
authored
use .spvasm instead of .spvt for disassembled SPIR-V files (#338)
1 parent 677348d commit ed72581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intercept/src/intercept.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5061,7 +5061,7 @@ void CLIntercept::dumpProgramSPIRV(
50615061
{
50625062
std::string command =
50635063
config().SPIRVDis +
5064-
" -o " + fileName + "t" +
5064+
" -o " + fileName + "asm" +
50655065
" " + fileName;
50665066

50675067
logf( "Running: %s\n", command.c_str() );
@@ -10307,7 +10307,7 @@ void CLIntercept::autoCreateSPIRV(
1030710307
{
1030810308
command =
1030910309
config().SPIRVDis +
10310-
" -o " + outputFileName + "t" +
10310+
" -o " + outputFileName + "asm" +
1031110311
" " + outputFileName;
1031210312

1031310313
logf( "Running: %s\n", command.c_str() );

0 commit comments

Comments
 (0)