File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ by writing a very simple program.
89
89
Here's the disassembly. Look at the address of ` HardFaultTrampoline ` .
90
90
91
91
``` 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
93
93
```
94
94
95
95
``` text
@@ -178,7 +178,7 @@ Now we can test this new version against the simple program from before and
178
178
we'll get the same output.
179
179
180
180
``` 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
182
182
```
183
183
184
184
``` text
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ Breakpoint 1, DefaultExceptionHandler ()
145
145
And for completeness, here's the disassembly of the optimized version of the program:
146
146
147
147
``` 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
149
149
```
150
150
151
151
``` text
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ $ cat src/main.rs
89
89
The disassembly will be similar but will now include the user ` main ` function.
90
90
91
91
``` console
92
- $ cargo objdump --bin app -- -d -no-show-raw-insn
92
+ $ cargo objdump --bin app -- -d -- no-show-raw-insn
93
93
```
94
94
95
95
``` text
You can’t perform that action at this time.
0 commit comments