VIXL Release 1.11

Refer to the README.md and LICENCE files for details.
diff --git a/examples/getting-started.cc b/examples/getting-started.cc
index 0987429..6cd8bba 100644
--- a/examples/getting-started.cc
+++ b/examples/getting-started.cc
@@ -41,7 +41,7 @@
 
 
 #ifndef TEST_EXAMPLES
-#ifdef USE_SIMULATOR
+#ifdef VIXL_INCLUDE_SIMULATOR
 int main() {
   byte assm_buf[BUF_SIZE];
   MacroAssembler masm(assm_buf, BUF_SIZE);
@@ -62,5 +62,5 @@
 #else
 // Without the simulator there is nothing to test.
 int main(void) { return 0; }
-#endif  // USE_SIMULATOR
+#endif  // VIXL_INCLUDE_SIMULATOR
 #endif  // TEST_EXAMPLES