Files
clang-p2996/compiler-rt/test/msan/select_origin.cpp
Kevin Athey 057cabd997 Remove function name from sanitize-memory-track-origins binary.
This work is being done to reduce the size of MSAN with track origins binary.

Builds upon: https://reviews.llvm.org/D131205

Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D131415
2022-08-10 15:45:40 -07:00

23 lines
705 B
C++

// RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// RUN: %clangxx_msan -fsanitize-memory-track-origins -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s
// RUN: %clangxx_msan -fsanitize-memory-track-origins -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s
// Test condition origin propagation through "select" IR instruction.
#include <stdio.h>
#include <stdint.h>
__attribute__((noinline))
int *max_by_ptr(int *a, int *b) {
return *a < *b ? b : a;
}
int main(void) {
int x;
int *volatile px = &x;
int y = 43;
int *p = max_by_ptr(px, &y);
// CHECK: Uninitialized value was created by an allocation of 'x' in the stack frame
return *p;
}