Duh, forgot to close the parenthesis.
[oota-llvm.git] / include / llvm / Target / MRegisterInfo.h
index 4383e729231b974d77ae14afe6a4043bfb10967b..bfac1a8325dabdf556f98260a61c6d85eebff8d4 100644 (file)
@@ -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;
   }