summary refs log tree commit diff stats
path: root/io/task.c
diff options
context:
space:
mode:
authorSu Hang <suhang16@mails.ucas.ac.cn>2018-02-25 12:35:58 +0800
committerStefan Hajnoczi <stefanha@redhat.com>2018-03-05 09:03:17 +0000
commita1515161b563acd0986867fc37084c1cf952ba35 (patch)
tree2883fccdb584c09d82694716fafc929f6482b587 /io/task.c
parent42fa27253cfa8b9ad7d41ce63a733a4c623ffc74 (diff)
downloadfocaccia-qemu-a1515161b563acd0986867fc37084c1cf952ba35.tar.gz
focaccia-qemu-a1515161b563acd0986867fc37084c1cf952ba35.zip
util/uri.c: wrap single statement blocks with braces {}
For this patch, using curly braces to wrap `if` `while` `else` statements,
which only hold single statement. For example:
'''
if (cond)
    statement;
'''
to
'''
if (cond) {
    statement;
}
'''

And using tricks that compare the disassemblies before and after
code changes, to make sure code logic isn't changed:
'''
git checkout master
make util/uri.o
strip util/uri.o
objdump -Drx util/uri.o > /tmp/uri-master.txt
git checkout cleanupbranch
make util/uri.o
strip util/uri.o
objdump -Drx util/uri.o > /tmp/uri-cleanup.txt

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'io/task.c')
0 files changed, 0 insertions, 0 deletions