Skip to content

Commit d50b97f

Browse files
bors[bot]alexgoto
andauthored
Merge #84
84: --no-show-raw-insn with one '-' r=eldruin a=alexgoto Related issue #83 Co-authored-by: Alexandr Gotovtsev <main.agot11@gmail.com>
2 parents 39b6dfa + 8e5b48d commit d50b97f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/asm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ by writing a very simple program.
8989
Here's the disassembly. Look at the address of `HardFaultTrampoline`.
9090

9191
``` console
92-
$ cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex
92+
$ cargo objdump --bin app --release -- -d --no-show-raw-insn --print-imm-hex
9393
```
9494

9595
``` text
@@ -178,7 +178,7 @@ Now we can test this new version against the simple program from before and
178178
we'll get the same output.
179179

180180
``` console
181-
$ cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex
181+
$ cargo objdump --bin app --release -- -d --no-show-raw-insn --print-imm-hex
182182
```
183183

184184
``` text

src/exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Breakpoint 1, DefaultExceptionHandler ()
145145
And for completeness, here's the disassembly of the optimized version of the program:
146146

147147
``` console
148-
$ cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex
148+
$ cargo objdump --bin app --release -- -d --no-show-raw-insn --print-imm-hex
149149
```
150150

151151
``` text

src/main.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ $ cat src/main.rs
8989
The disassembly will be similar but will now include the user `main` function.
9090

9191
``` console
92-
$ cargo objdump --bin app -- -d -no-show-raw-insn
92+
$ cargo objdump --bin app -- -d --no-show-raw-insn
9393
```
9494

9595
``` text

0 commit comments

Comments
 (0)