Skip to content

Commit 74eb9e7

Browse files
author
Jim Grosbach
committed
Move ~ARMConstantPoolValue() to the .cpp file to avoid needing to include <cstdlib> in the header.
llvm-svn: 78665
1 parent 38484ce commit 74eb9e7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

llvm/lib/Target/ARM/ARMConstantPoolValue.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "llvm/Type.h"
1818
#include "llvm/Support/Streams.h"
1919
#include "llvm/Support/raw_ostream.h"
20+
#include <cstdlib>
2021
using namespace llvm;
2122

2223
ARMConstantPoolValue::ARMConstantPoolValue(GlobalValue *gv, unsigned id,
@@ -65,6 +66,10 @@ int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP,
6566
return -1;
6667
}
6768

69+
ARMConstantPoolValue::~ARMConstantPoolValue(void) {
70+
free((void*)S);
71+
}
72+
6873
void
6974
ARMConstantPoolValue::AddSelectionDAGCSEId(FoldingSetNodeID &ID) {
7075
ID.AddPointer(GV);

llvm/lib/Target/ARM/ARMConstantPoolValue.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
#include "llvm/CodeGen/MachineConstantPool.h"
1818
#include <iosfwd>
19-
#include <stdlib.h>
2019

2120
namespace llvm {
2221

@@ -55,7 +54,7 @@ class ARMConstantPoolValue : public MachineConstantPoolValue {
5554
ARMConstantPoolValue(GlobalValue *GV, ARMCP::ARMCPKind Kind,
5655
const char *Modifier);
5756
ARMConstantPoolValue();
58-
~ARMConstantPoolValue() {free((void*)S);}
57+
~ARMConstantPoolValue();
5958

6059

6160
GlobalValue *getGV() const { return GV; }

0 commit comments

Comments
 (0)