diff options
author | Eddie Hung <e.hung@imperial.ac.uk> | 2018-07-25 17:53:01 -0700 |
---|---|---|
committer | Eddie Hung <e.hung@imperial.ac.uk> | 2018-07-25 17:53:01 -0700 |
commit | 950f33c1bb6260f830e6974583d0e1424146b386 (patch) | |
tree | 5086d59b3be9b4a0b6b3959955db79dc7c5f0bd9 /bba | |
parent | e6015dc695dbd29717bd01694726da5dd1033e27 (diff) | |
download | nextpnr-950f33c1bb6260f830e6974583d0e1424146b386.tar.gz nextpnr-950f33c1bb6260f830e6974583d0e1424146b386.tar.bz2 nextpnr-950f33c1bb6260f830e6974583d0e1424146b386.zip |
clangformat
Diffstat (limited to 'bba')
-rw-r--r-- | bba/main.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bba/main.cc b/bba/main.cc index cd09f804..9f7da8d2 100644 --- a/bba/main.cc +++ b/bba/main.cc @@ -276,13 +276,13 @@ int main(int argc, char **argv) case 4: data[cursor++] = value >> 24; data[cursor++] = value >> 16; - /* fall-through */ + /* fall-through */ case 2: data[cursor++] = value >> 8; - /* fall-through */ + /* fall-through */ case 1: data[cursor++] = value; - /* fall-through */ + /* fall-through */ case 0: break; default: @@ -293,13 +293,13 @@ int main(int argc, char **argv) case 4: data[cursor + 3] = value >> 24; data[cursor + 2] = value >> 16; - /* fall-through */ + /* fall-through */ case 2: data[cursor + 1] = value >> 8; - /* fall-through */ + /* fall-through */ case 1: data[cursor] = value; - /* fall-through */ + /* fall-through */ case 0: break; default: |