Update docs on iree-opt to use a file and options that still exist.
diff --git a/docs/developer_overview.md b/docs/developer_overview.md
index 5898490..3000d24 100644
--- a/docs/developer_overview.md
+++ b/docs/developer_overview.md
@@ -74,18 +74,16 @@
top of the file that specifies which passes should be performed and if
`FileCheck` should be used to test the generated output.
-For example, to run some passes on the
-[reshape.mlir](https://github.com/google/iree/blob/master/iree/compiler/Translation/SPIRV/XLAToSPIRV/test/reshape.mlir)
-test file:
+For example, to run IREE's complete transformation pipeline targetting the VMLA
+backend on the
+[fullyconnected.mlir](https://github.com/google/iree/blob/master/iree/test/e2e/models/fullyconnected.mlir)
+model file:
```shell
$ bazel run iree/tools:iree-opt -- \
- -split-input-file \
- -iree-index-computation \
- -simplify-spirv-affine-exprs=false \
- -convert-iree-to-spirv \
- -verify-diagnostics \
- $PWD/iree/compiler/Translation/SPIRV/XLAToSPIRV/test/reshape.mlir
+ -iree-transformation-pipeline \
+ -iree-hal-target-backends=vmla \
+ $PWD/iree/test/e2e/models/fullyconnected.mlir
```
Custom passes may also be layered on top of `iree-opt`, see