From b5500b9ca0102f1ccaf32f0e77e96d0739aded9b Mon Sep 17 00:00:00 2001 From: pascal Date: Sat, 3 Sep 2016 22:46:54 +0000 Subject: Use the space freed up by sparc and zaurus to import LLVM. ok hackroom@ --- gnu/llvm/lib/CodeGen/GCStrategy.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gnu/llvm/lib/CodeGen/GCStrategy.cpp (limited to 'gnu/llvm/lib/CodeGen/GCStrategy.cpp') diff --git a/gnu/llvm/lib/CodeGen/GCStrategy.cpp b/gnu/llvm/lib/CodeGen/GCStrategy.cpp new file mode 100644 index 00000000000..554d326942e --- /dev/null +++ b/gnu/llvm/lib/CodeGen/GCStrategy.cpp @@ -0,0 +1,22 @@ +//===-- GCStrategy.cpp - Garbage Collector Description --------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file implements the policy object GCStrategy which describes the +// behavior of a given garbage collector. +// +//===----------------------------------------------------------------------===// + +#include "llvm/CodeGen/GCStrategy.h" + +using namespace llvm; + +GCStrategy::GCStrategy() + : UseStatepoints(false), NeededSafePoints(0), CustomReadBarriers(false), + CustomWriteBarriers(false), CustomRoots(false), InitRoots(true), + UsesMetadata(false) {} -- cgit v1.2.3-59-g8ed1b