@@ -282,7 +282,6 @@ class DbgVariableRecord : public DbgRecord, protected DebugValueUser {
282282 Declare,
283283 Value,
284284 Assign,
285- CoroFrameEntry,
286285
287286 End, // /< Marks the end of the concrete types.
288287 Any, // /< To indicate all LocationTypes in searches.
@@ -365,14 +364,6 @@ class DbgVariableRecord : public DbgRecord, protected DebugValueUser {
365364 createDVRDeclare (Value *Address, DILocalVariable *DV, DIExpression *Expr,
366365 const DILocation *DI, DbgVariableRecord &InsertBefore);
367366
368- LLVM_ABI static DbgVariableRecord *
369- createDVRCoroFrameEntry (Value *Address, DILocalVariable *DV,
370- DIExpression *Expr, const DILocation *DI);
371- LLVM_ABI static DbgVariableRecord *
372- createDVRCoroFrameEntry (Value *Address, DILocalVariable *DV,
373- DIExpression *Expr, const DILocation *DI,
374- DbgVariableRecord &InsertBefore);
375-
376367 // / Iterator for ValueAsMetadata that internally uses direct pointer iteration
377368 // / over either a ValueAsMetadata* or a ValueAsMetadata**, dereferencing to the
378369 // / ValueAsMetadata .
@@ -423,9 +414,6 @@ class DbgVariableRecord : public DbgRecord, protected DebugValueUser {
423414
424415 bool isDbgDeclare () const { return Type == LocationType::Declare; }
425416 bool isDbgValue () const { return Type == LocationType::Value; }
426- bool isDbgCoroFrameEntry () const {
427- return Type == LocationType::CoroFrameEntry;
428- }
429417
430418 // / Get the locations corresponding to the variable referenced by the debug
431419 // / info intrinsic. Depending on the intrinsic, this could be the
0 commit comments