Test update for r287576
llvm-svn: 287577
// RUN: %clang_cl_asan -LD -O2 %s -Fe%t.dll -link -opt:ref
// RUN: %env_asan_opts=report_globals=2 %run %t %t.dll 2>&1 | FileCheck %s --check-prefix=STRIP
-// FIXME: Remove the XFAIL once the LLVM instrumentation change lands.
-// XFAIL: *
-
#include <stdio.h>
int dead_global = 42;
// RUN: %clang_cl_asan /O2 %s /Fe%t.exe -link -opt:ref
// RUN: %env_asan_opts=report_globals=2 %t.exe 2>&1 | FileCheck %s --check-prefix=STRIP
-// FIXME: Remove the XFAIL once the LLVM instrumentation change lands.
-// XFAIL: *
-
#include <stdio.h>
int dead_global = 42;
int live_global = 0;