Skip to content

Commit

Permalink
Update llpc to handle new version of llvm
Browse files Browse the repository at this point in the history
Handle upstream llvm changes for llvm/llvm-project@7b9d73c
[NFC] Remove Type::getInt8PtrTy (#71029)
  • Loading branch information
mbrkusanin committed Nov 8, 2023
1 parent 8e7a79b commit f62ef9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/continuations/lib/LowerAwait.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ static void processContinuations(
// co.flag = llvm.coro.suspend.retcon
// unreachable
auto &Context = M.getContext();
auto *I8Ptr = Type::getInt8PtrTy(Context);
auto *I8Ptr = PointerType::getUnqual(Context);
auto *I32 = Type::getInt32Ty(Context);
auto *I64 = Type::getInt64Ty(Context);

Expand Down

0 comments on commit f62ef9d

Please sign in to comment.