blob: f01c5e7e2a0120f897010da9087f9995fbc42263 [file] [log] [blame]
// This file is distributed under the University of Illinois Open Source License.
// See LICENSE.TXT for details.
// RUN: cxx_compiler %s -c -o %t.o
// RUN: linker %t.o -o %t%exeext
// RUN: bindump %t%exeext | tee %t.out | FileCheck %s
#include <stdio.h>
#include <stdlib.h>
// Check that __dso_handle is present in an executable that calls atexit()
// CHECK: __dso_handle
void fn01() { printf("%s()\n", __FUNCTION__); }
int main(int argc, char *argv[]) {
atexit(fn01);
return 0;
}