randstruct: Check member structs in is_pure_ops_struct()
[linux-2.6-microblaze.git] / scripts / gcc-plugins / randomize_layout_plugin.c
index 6d5bbd3..bd29e4e 100644 (file)
@@ -443,13 +443,13 @@ static int is_pure_ops_struct(const_tree node)
                if (node == fieldtype)
                        continue;
 
-               if (!is_fptr(fieldtype))
-                       return 0;
-
-               if (code != RECORD_TYPE && code != UNION_TYPE)
+               if (code == RECORD_TYPE || code == UNION_TYPE) {
+                       if (!is_pure_ops_struct(fieldtype))
+                               return 0;
                        continue;
+               }
 
-               if (!is_pure_ops_struct(fieldtype))
+               if (!is_fptr(fieldtype))
                        return 0;
        }