diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-02-28 18:16:44 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-02-28 18:16:44 +0000 |
commit | 64e2e516bc506010bdeecd8f4025a13d5be77af4 (patch) | |
tree | b7d98a2d45e70fe48a715a58d2dd26da323d8198 | |
parent | 34d4b9682be0aa120dfad7a3eb39c38003c246a0 (diff) | |
download | bcm5719-llvm-64e2e516bc506010bdeecd8f4025a13d5be77af4.tar.gz bcm5719-llvm-64e2e516bc506010bdeecd8f4025a13d5be77af4.zip |
Forgot to check in this file with r151593.
llvm-svn: 151640
-rw-r--r-- | lldb/test/functionalities/memory/read/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/functionalities/memory/read/main.cpp b/lldb/test/functionalities/memory/read/main.cpp index a9fce6c796a..b4d7809d27c 100644 --- a/lldb/test/functionalities/memory/read/main.cpp +++ b/lldb/test/functionalities/memory/read/main.cpp @@ -11,6 +11,8 @@ int main (int argc, char const *argv[]) { char my_string[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 0}; + double my_double = 1234.5678; printf("my_string=%s\n", my_string); // Set break point at this line. + printf("my_double=%g\n", my_double); return 0; } |