New settings: target.use-hex-immediates and target.hex-immediates-style
- Immediates can be shown as hex (either Intel or MASM style)
- See TestSettings.py for usage examples
- Verified to cause no regressions on Linux x86_64 (Ubuntu 12.10)

Patch by Richard Mitton!

llvm-svn: 187921
diff --git a/lldb/test/settings/main.cpp b/lldb/test/settings/main.cpp
index 0ceb427..cf2b16b 100644
--- a/lldb/test/settings/main.cpp
+++ b/lldb/test/settings/main.cpp
@@ -12,6 +12,11 @@
 #include <fstream>
 #include <iostream>
 
+int numberfn()
+{
+    return 0x5a;
+}
+
 int
 main(int argc, char const *argv[])
 {
@@ -66,5 +71,5 @@
     std::cout << "This message should go to standard out.\n";
 
     outfile.close();
-    return 0;
+    return numberfn();
 }