aboutsummaryrefslogtreecommitdiff
path: root/test/safestack/buffer-copy-vla.c
blob: 356a1ac5c65c0e3c01c37978add3720a9f95b81a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: %clang_safestack %s -o %t
// RUN: %run %t

#include "utils.h"

// Test that loads/stores work correctly for VLAs on the unsafe stack.

int main(int argc, char **argv)
{
  int i = 128;
  break_optimization(&i);
  char buffer[i];

  // check that we can write to a buffer
  for (i = 0; argv[0][i] && i < sizeof (buffer) - 1; ++i)
    buffer[i] = argv[0][i];
  buffer[i] = '\0';

  break_optimization(buffer);

  // check that we can read from a buffer
  for (i = 0; argv[0][i] && i < sizeof (buffer) - 1; ++i)
    if (buffer[i] != argv[0][i])
      return 1;
  return 0;
}