blob: a0c70023f2f6fd1b6e127f2bc5a2625a442c9955 [file] [log] [blame]
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -07001// RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1
Stephen Hines2d1fdb22014-05-28 23:58:16 -07002// RUN: FileCheck %s < %t.out && FileCheck %s < %t.out
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -07003// RUN: %clangxx_msan -fsanitize-memory-track-origins -O3 %s -o %t && not %run %t >%t.out 2>&1
Stephen Hines2d1fdb22014-05-28 23:58:16 -07004// RUN: FileCheck %s < %t.out && FileCheck %s < %t.out
5
6// Test origin propagation through insertvalue IR instruction.
7
8#include <stdio.h>
9#include <stdint.h>
10
11struct mypair {
12 int64_t x;
13 int y;
14};
15
16mypair my_make_pair(int64_t x, int y) {
17 mypair p;
18 p.x = x;
19 p.y = y;
20 return p;
21}
22
23int main() {
24 int64_t * volatile p = new int64_t;
25 mypair z = my_make_pair(*p, 0);
26 if (z.x)
27 printf("zzz\n");
28 // CHECK: MemorySanitizer: use-of-uninitialized-value
29 // CHECK: {{in main .*insertvalue_origin.cc:}}[[@LINE-3]]
30
31 // CHECK: Uninitialized value was created by a heap allocation
32 // CHECK: {{in main .*insertvalue_origin.cc:}}[[@LINE-8]]
33 delete p;
34 return 0;
35}