]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 6 Jul 2004 14:25:03 +0000 (14:25 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 6 Jul 2004 14:25:03 +0000 (14:25 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3146 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/asmcode.c

index 9f61dc212c4751a07201996b4319d68852d79aa0..f81d3ebb83850b3f3f208ac18ca42a52fd38e74e 100644 (file)
@@ -83,9 +83,9 @@ void MoveCode (const CodeMark* Start, const CodeMark* End, const CodeMark* Targe
 
 int CodeRangeIsEmpty (const CodeMark* Start, const CodeMark* End)
 /* Return true if the given code range is empty (no code between Start and End) */
-{   
+{
     int Empty;
-    PRECONDITION (Start->Pos >= End->Pos);
+    PRECONDITION (Start->Pos <= End->Pos);
     Empty = (Start->Pos == End->Pos);
     if (Empty) {
         /* Safety */