From: Alkis Evlogimenos Date: Wed, 25 Feb 2004 22:07:14 +0000 (+0000) Subject: Duh, forgot to close the parenthesis. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=332d5d0a685bc31c2499b7cab8056a1fbcc52fa3;p=oota-llvm.git Duh, forgot to close the parenthesis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11843 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h index 4383e729231..bfac1a8325d 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; }