mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
5357a6d64b
This patch removes most of the trivial cases of weak vtables by pinning them to a single object file. The memory leaks in this version have been fixed. Thanks Alexey for pointing them out. Differential Revision: http://llvm-reviews.chandlerc.com/D2068 Reviewed by Andy llvm-svn: 195064
17 lines
479 B
C++
17 lines
479 B
C++
//= HexagonMachineFunctionInfo.cpp - Hexagon machine function info *- C++ -*-=//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "HexagonMachineFunctionInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
// pin vtable to this file
|
|
void HexagonMachineFunctionInfo::anchor() {}
|
|
|