summaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-25 22:07:14 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-25 22:07:14 +0000
commit332d5d0a685bc31c2499b7cab8056a1fbcc52fa3 (patch)
tree3216c8c44d4b626f026fc438233a6861de421faa /include/llvm
parent338ce3d64efed7abe7bf462a8477831dc9812685 (diff)
downloadexternal_llvm-332d5d0a685bc31c2499b7cab8056a1fbcc52fa3.zip
external_llvm-332d5d0a685bc31c2499b7cab8056a1fbcc52fa3.tar.gz
external_llvm-332d5d0a685bc31c2499b7cab8056a1fbcc52fa3.tar.bz2
Duh, forgot to close the parenthesis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11843 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-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 4383e72..bfac1a8 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;
}