From 4c50715e9e6ab41208b1bdb6b9c4145c357ab765 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Wed, 25 Feb 2004 23:56:36 +0000 Subject: [PATCH] Temporarily comment out asserts as they break things. I will uncomment them when all the problem areas are fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11855 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/MRegisterInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h index bfac1a8325d..0f2f9ad453c 100644 --- a/include/llvm/Target/MRegisterInfo.h +++ b/include/llvm/Target/MRegisterInfo.h @@ -141,14 +141,14 @@ public: /// isPhysicalRegister - Return true if the specified register number is in /// the physical register namespace. static bool isPhysicalRegister(unsigned Reg) { - assert(Reg && "this is not a register!"); +// assert(Reg && "this is not a register!"); return Reg < FirstVirtualRegister; } /// isVirtualRegister - Return true if the specified register number is in /// the virtual register namespace. static bool isVirtualRegister(unsigned Reg) { - assert(Reg && "this is not a register!"); +// assert(Reg && "this is not a register!"); return Reg >= FirstVirtualRegister; } -- 2.34.1