This is a patch to support D66328, which was reverted until this lands. Enable a compiler-rt test that used to fail previously with D66328. Differential Revision: https://reviews.llvm.org/D67283
11 lines
236 B
C++
11 lines
236 B
C++
// RUN: %clangxx_asan -coverage -O0 %s -o %t
|
|
// RUN: %env_asan_opts=check_initialization_order=1 %run %t 2>&1 | FileCheck %s
|
|
|
|
#include <stdio.h>
|
|
int foo() { return 1; }
|
|
int XXX = foo();
|
|
int main() {
|
|
printf("PASS\n");
|
|
// CHECK: PASS
|
|
}
|