freedreno/a5xx: add fd5_emit_init_screen()
[mesa.git] / bin / perf-annotate-jit.py
index 746434008fd92dbfb32286930680da4e780ac7b6..4f05585bd431c3bdceea824d2bf0b8e793b2be86 100755 (executable)
@@ -133,7 +133,7 @@ class PerfParser(LineParser):
 
     def __init__(self, infile, symbol):
         LineParser.__init__(self, infile)
-       self.symbol = symbol
+        self.symbol = symbol
 
     def readline(self):
         # Override LineParser.readline to ignore comment lines
@@ -155,7 +155,7 @@ class PerfParser(LineParser):
         addresses.sort()
         total_samples = 0
 
-       sys.stdout.write('%s:\n' % self.symbol)
+        sys.stdout.write('%s:\n' % self.symbol)
         for address, instr in asm:
             try:
                 sample = samples.pop(address)