Skip to content

Commit

Permalink
[CIR][NFC] Fix linking problems saved_type::restore
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardosolopes committed May 1, 2023
1 parent 6c0d95c commit 87998b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/lib/CIR/CodeGen/CIRGenFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -1612,7 +1612,7 @@ template <> struct DominatingValue<RValue> {
public:
static bool needsSaving(RValue value);
static saved_type save(CIRGenFunction &CGF, RValue value);
RValue restore(CIRGenFunction &CGF);
RValue restore(CIRGenFunction &CGF) { llvm_unreachable("NYI"); }

// implementations in CGCleanup.cpp
};
Expand Down

0 comments on commit 87998b6

Please sign in to comment.