summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/main.c
blob: ac2370e32d2a54565d44abc3141060e2076badf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//===-- main.c --------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
typedef signed char v4i8 __attribute__ ((vector_size(4)));
v4i8 global_vector = {1, 2, 3, 4};

int
main ()
{
  return 0;
}