1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix for VS 2005 problem supplied by Morten Ofstad.

llvm-svn: 35098
This commit is contained in:
Jeff Cohen 2007-03-14 15:25:21 +00:00
parent 371b8e8fa9
commit b19ec59b5c

View File

@ -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
}
};