Browse Source

* some small cleanup (remove some specific operators which are not supported)

carl 22 years ago
parent
commit
051cd78965
2 changed files with 8 additions and 16 deletions
  1. 4 8
      compiler/i386/ra386att.pas
  2. 4 8
      compiler/i386/ra386int.pas

+ 4 - 8
compiler/i386/ra386att.pas

@@ -693,13 +693,6 @@ begin
            exit;
          end;
 
-       '!' :
-         begin
-           Message(asmr_e_nor_not_supported);
-           c:=current_scanner.asmgetchar;
-           actasmtoken:=AS_NONE;
-           exit;
-         end;
 
        '(' :
          begin
@@ -2129,7 +2122,10 @@ finalization
 end.
 {
   $Log$
-  Revision 1.33  2002-11-30 23:16:39  carl
+  Revision 1.34  2002-12-01 22:08:34  carl
+    * some small cleanup (remove some specific operators which are not supported)
+
+  Revision 1.33  2002/11/30 23:16:39  carl
     - removed unused message
 
   Revision 1.32  2002/11/15 01:58:58  peter

+ 4 - 8
compiler/i386/ra386int.pas

@@ -393,13 +393,6 @@ begin
            exit;
          end;
 
-       '&' : { override operator... not supported }
-         begin
-           Message(asmr_w_override_op_not_supported);
-           c:=current_scanner.asmgetchar;
-           actasmtoken:=AS_NONE;
-         end;
-
        '''' : { string or character }
          begin
            actasmpattern:='';
@@ -1963,7 +1956,10 @@ finalization
 end.
 {
   $Log$
-  Revision 1.36  2002-11-15 01:58:59  peter
+  Revision 1.37  2002-12-01 22:08:34  carl
+    * some small cleanup (remove some specific operators which are not supported)
+
+  Revision 1.36  2002/11/15 01:58:59  peter
     * merged changes from 1.0.7 up to 04-11
       - -V option for generating bug report tracing
       - more tracing for option parsing