diff options
Diffstat (limited to 'clang/lib/CodeGen/CGCleanup.h')
-rw-r--r-- | clang/lib/CodeGen/CGCleanup.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CGCleanup.h b/clang/lib/CodeGen/CGCleanup.h index 61d9f02a08f..40a7502973e 100644 --- a/clang/lib/CodeGen/CGCleanup.h +++ b/clang/lib/CodeGen/CGCleanup.h @@ -374,11 +374,6 @@ public: return new (Buffer) T(N, a0, a1, a2); } - void pushCopyOfCleanup(CleanupKind Kind, const void *Cleanup, size_t Size) { - void *Buffer = pushCleanup(Kind, Size); - std::memcpy(Buffer, Cleanup, Size); - } - /// Pops a cleanup scope off the stack. This is private to CGCleanup.cpp. void popCleanup(); |