[llvm-commits] CVS: llvm/include/llvm/Target/MRegisterInfo.h

Alkis Evlogimenos alkis at niobe.cs.uiuc.edu
Wed Feb 25 16:08:01 PST 2004


Changes in directory llvm/include/llvm/Target:

MRegisterInfo.h updated: 1.36 -> 1.37

---
Log message:

Duh, forgot to close the parenthesis.


---
Diffs of the changes:  (+2 -2)

Index: llvm/include/llvm/Target/MRegisterInfo.h
diff -u llvm/include/llvm/Target/MRegisterInfo.h:1.36 llvm/include/llvm/Target/MRegisterInfo.h:1.37
--- llvm/include/llvm/Target/MRegisterInfo.h:1.36	Wed Feb 25 16:04:28 2004
+++ llvm/include/llvm/Target/MRegisterInfo.h	Wed Feb 25 16:07:14 2004
@@ -141,14 +141,14 @@
   /// 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;
   }
 





More information about the llvm-commits mailing list