diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2007-03-14 15:25:21 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2007-03-14 15:25:21 +0000 |
commit | fb062ece96092e70a835c0d462613b07228d60a3 (patch) | |
tree | 0018fa11cd8283b8f5c0132bd2864bb46f0a9269 | |
parent | a19ac5286307faac5e1e759a96e4296df27873eb (diff) |
Fix for VS 2005 problem supplied by Morten Ofstad.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35098 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index e4b37c3bf0..3b596e2232 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -386,6 +386,7 @@ public: virtual const TargetRegisterClass *getPointerRegClass() const { assert(0 && "Target didn't implement getPointerRegClass!"); abort(); + return 0; // Must return a value in order to compile with VS 2005 } }; |