diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-08-11 21:17:49 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-08-11 21:17:49 -0400 |
| commit | 3e7e5e6f6593b425319f51bc553d1cb10b2148ff (patch) | |
| tree | 3dc3a81f60cf82da2957bba7f6771fea98bec3aa /architecture.cpp | |
| parent | ddca2fbb272ae8bbce6e421f07845d3439d08f5b (diff) | |
Fix uninitialized member of instruction info structure
Diffstat (limited to 'architecture.cpp')
| -rw-r--r-- | architecture.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/architecture.cpp b/architecture.cpp index 9ad94b0c..6b9440d6 100644 --- a/architecture.cpp +++ b/architecture.cpp @@ -11,6 +11,7 @@ InstructionInfo::InstructionInfo() { length = 0; branchCount = 0; + branchDelay = false; } |
