VIXL Release 1.5
Refer to the README.md and LICENCE files for details.
diff --git a/examples/sum-array.cc b/examples/sum-array.cc
index 5f23e6a..f503136 100644
--- a/examples/sum-array.cc
+++ b/examples/sum-array.cc
@@ -77,7 +77,7 @@
uintptr_t data_addr = reinterpret_cast<uintptr_t>(data);
simulator.set_xreg(0, data_addr);
simulator.set_xreg(1, ARRAY_SIZE(data));
- simulator.RunFrom(sum_array.target());
+ simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&sum_array));
unsigned int i;
for (i = 0; i < ARRAY_SIZE(data) - 1; ++i) {