diff options
author | Duncan Sands <baldrick@free.fr> | 2009-07-03 16:06:07 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-07-03 16:06:07 +0000 |
commit | 7e29dad8ec14d02c76fcd832ef80326fbb36fed2 (patch) | |
tree | d2767ebf71a8814c157346c0745f542bb43e1f61 | |
parent | 8fedcd3cb14c631738a70c86e42c8f5e1968caee (diff) | |
download | external_llvm-7e29dad8ec14d02c76fcd832ef80326fbb36fed2.zip external_llvm-7e29dad8ec14d02c76fcd832ef80326fbb36fed2.tar.gz external_llvm-7e29dad8ec14d02c76fcd832ef80326fbb36fed2.tar.bz2 |
Silence warning when building without assertions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74777 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/MSP430/MSP430RegisterInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/MSP430/MSP430RegisterInfo.cpp b/lib/Target/MSP430/MSP430RegisterInfo.cpp index ef6f997..d40bac7 100644 --- a/lib/Target/MSP430/MSP430RegisterInfo.cpp +++ b/lib/Target/MSP430/MSP430RegisterInfo.cpp @@ -350,6 +350,7 @@ unsigned MSP430RegisterInfo::getFrameRegister(MachineFunction &MF) const { int MSP430RegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const { assert(0 && "Not implemented yet!"); + return 0; } #include "MSP430GenRegisterInfo.inc" |