Skip to content

Commit 858ca37

Browse files
authored
[NFC] Fix windows build after 7c59e8 (#1970)
patch by Artur Gainullin <[email protected]> Signed-off-by: Sidorov, Dmitry <[email protected]>
1 parent 18ced39 commit 858ca37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SPIRV/SPIRVUtil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ parseNode(Module *M, const llvm::itanium_demangle::Node *ParamType,
727727
while (true) {
728728
if (auto *VendorTy = dyn_cast<VendorExtQualType>(Pointee)) {
729729
Pointee = VendorTy->getTy();
730-
StringRef Qualifier(VendorTy->getExt().begin(),
730+
StringRef Qualifier(&*VendorTy->getExt().begin(),
731731
VendorTy->getExt().size());
732732
if (Qualifier.consume_front("AS")) {
733733
Qualifier.getAsInteger(10, AS);

0 commit comments

Comments
 (0)