| Index: src/IceInstARM32.h
|
| diff --git a/src/IceInstARM32.h b/src/IceInstARM32.h
|
| index 1b997790a50c200ea38aac492faad2edbf5e2502..f0240a13514e2a8773f3f2f5bf1d3cd89e90d3c7 100644
|
| --- a/src/IceInstARM32.h
|
| +++ b/src/IceInstARM32.h
|
| @@ -76,7 +76,7 @@ public:
|
| /// The enum value also carries the encoding.
|
| // TODO(jvoung): unify with the assembler.
|
| enum AddrMode {
|
| - // bit encoding P U W
|
| + // bit encoding P U 0 W
|
| Offset = (8 | 4 | 0) << 21, // offset (w/o writeback to base)
|
| PreIndex = (8 | 4 | 1) << 21, // pre-indexed addressing with writeback
|
| PostIndex = (0 | 4 | 0) << 21, // post-indexed addressing with writeback
|
|
|