diff options
-rwxr-xr-x | compilerplugins/clang/pahole-all-classes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/pahole-all-classes.py b/compilerplugins/clang/pahole-all-classes.py index 088e9cad2949..ec8d20e767e7 100755 --- a/compilerplugins/clang/pahole-all-classes.py +++ b/compilerplugins/clang/pahole-all-classes.py @@ -113,7 +113,7 @@ for line in read_generator(): # re-organising them can make them much less readable. if foundHole and len(structLines) < 12 and structSize < 100 and not foundBogusLine: # Verify that we have enough hole-space that removing it will result in a structure - # that still satifies alignment requirements, otherwise the compiler will just put empty + # that still satisfies alignment requirements, otherwise the compiler will just put empty # space at the end of the struct. # TODO improve detection of the required alignment for a structure potentialSpace = (cumulativeHoleBits / 8) + (sizeOfFields - structSize) @@ -130,4 +130,4 @@ for line in read_generator(): foundBogusLine = False actualStructSize = 0 -gdbProc.terminate()
\ No newline at end of file +gdbProc.terminate() |