1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include <stdio.h>
11
12 struct foo
13 {
14 int first;
15 int second;
16 };
17
main()18 int main ()
19 {
20 struct foo mine = {0x001122AA, 0x1122BB44};
21 mine.first = 0xAABBCCDD; // Set break point at this line.
22 mine.second = 0xFF00FF00;
23 return 0;
24 }
25
26