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//===----------------------------------------------------------------------===//
9int main (int argc, char const *argv[])
10{
11    typedef unsigned int uint32_t;
12    unsigned char the_unsigned_char = 'c';
13    unsigned short the_unsigned_short = 'c';
14    unsigned int the_unsigned_int = 'c';
15    unsigned long the_unsigned_long = 'c';
16    unsigned long long the_unsigned_long_long = 'c';
17    uint32_t the_uint32 = 'c';
18
19    return  the_unsigned_char - the_unsigned_short + // Set break point at this line.
20            the_unsigned_int - the_unsigned_long +
21            the_unsigned_long_long - the_uint32;
22}
23