You can use \let to save a command under another name, and then use that new name in the \renewcommand.
\documentclass{article}
\let\oldemph\emph
\renewcommand{\emph}[1]{\textbf{\oldemph{#1}}}
\begin{document}
\oldemph{Old emph}
\emph{New emph}
\end{document}
(Edit: the TeX FAQTeX FAQ has much more information about "patching" commands. Edit2: egreg's answer below describes some of the gotchas of \let)