We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d9df5 commit 00ffdaaCopy full SHA for 00ffdaa
llvm/lib/MC/SPIRVObjectWriter.cpp
@@ -20,8 +20,8 @@ void SPIRVObjectWriter::writeHeader(const MCAssembler &Asm) {
20
constexpr uint32_t GeneratorID = 43;
21
const uint32_t GeneratorMagicNumber =
22
Asm.getContext().getTargetTriple().getVendor() == Triple::AMD
23
- ? UINT16_MAX
24
- : ((GeneratorID << 16) | (LLVM_VERSION_MAJOR));
+ ? UINT16_MAX
+ : ((GeneratorID << 16) | (LLVM_VERSION_MAJOR));
25
constexpr uint32_t Schema = 0;
26
27
W.write<uint32_t>(MagicNumber);
0 commit comments