Skip to content

Commit 70ffcfe

Browse files
authored
[SPIRV] Fix build after change in transitive includes (#106140)
An unordered_set include was removed from a header in 04ebd19 "[MC][NFC] Statically allocate storage for decoded pseudo probes and function records (#102789)", but SPIRVEmitIntrinsics was getting the definition from that transitive include. Fix the build by including the header explicitly.
1 parent a959d70 commit 70ffcfe

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "llvm/IR/TypedPointerType.h"
2525

2626
#include <queue>
27+
#include <unordered_set>
2728

2829
// This pass performs the following transformation on LLVM IR level required
2930
// for the following translation to SPIR-V:

0 commit comments

Comments
 (0)