1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #include <stdio.h>
9 
10 int main (int argc, char const *argv[])
11 {
12   void* my_ptr[] = {
13     reinterpret_cast<void*>(0xDEADBEEF),
14     reinterpret_cast<void*>(main),
15     reinterpret_cast<void*>(0xFEEDBEEF),
16     reinterpret_cast<void*>(0xFEEDDEAD),
17     reinterpret_cast<void*>(0xDEADFEED)
18   };
19   return 0; // break here
20 }
21 
22