aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-25 23:56:36 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-25 23:56:36 +0000
commit4c50715e9e6ab41208b1bdb6b9c4145c357ab765 (patch)
treec7a3ae9148ddf6e4c90cce24b9eea5390928f75c /include
parentf3dd0dbc584d66a25e11bca66c6d2e93ac247e27 (diff)
downloadexternal_llvm-4c50715e9e6ab41208b1bdb6b9c4145c357ab765.zip
external_llvm-4c50715e9e6ab41208b1bdb6b9c4145c357ab765.tar.gz
external_llvm-4c50715e9e6ab41208b1bdb6b9c4145c357ab765.tar.bz2
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
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/MRegisterInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h
index bfac1a8..0f2f9ad 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;
}