Verify changes in parameters of function pointers. Fixed comparison of virtual table entries. Do not show time stamp in the report. Fixed detection of the GCC version number. Fixed -skip-symbols option.
diff --git a/README b/README
index f0600a7..28392fb 100644
--- a/README
+++ b/README
@@ -17,6 +17,21 @@
   Ctags
   ABI Dumper (0.99.14 or newer)
 
+USAGE (WITH ABI DUMPER):
+
+   1. Library should be compiled with "-g -Og" GCC options
+      to contain DWARF debug info
+      
+   2. Create ABI dumps for both library versions
+      using the ABI Dumper (https://github.com/lvc/abi-dumper) tool:
+      
+        abi-dumper OLD.so -o ABI-0.dump -lver 0
+        abi-dumper NEW.so -o ABI-1.dump -lver 1
+        
+   3. Compare ABI dumps to create report:
+   
+        abi-compliance-checker -l NAME -old ABI-0.dump -new ABI-1.dump
+
 USAGE (ORIGINAL):
   abi-compliance-checker -lib NAME -old OLD.xml -new NEW.xml
 
@@ -34,20 +49,5 @@
         /path/to/libraries/
     </libs>
 
-USAGE WITH ABI DUMPER:
-
-   1. Library should be compiled with "-g -Og" GCC options
-      to contain DWARF debug info
-      
-   2. Create ABI dumps for both library versions
-      using the ABI Dumper (https://github.com/lvc/abi-dumper) tool:
-      
-        abi-dumper OLD.so -o ABI-0.dump -lver 0
-        abi-dumper NEW.so -o ABI-1.dump -lver 1
-        
-   3. Compare ABI dumps to create report:
-   
-        abi-compliance-checker -l NAME -old ABI-0.dump -new ABI-1.dump
-
 ADV. USAGE:
   For advanced usage, see doc/index.html or output of -help option.