Forgot to check in this file with r151593.

llvm-svn: 151640
This commit is contained in:
Johnny Chen 2012-02-28 18:16:44 +00:00
parent 34d4b9682b
commit 64e2e516bc
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}