diff options
author | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2014-03-06 12:03:36 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2014-03-06 12:03:36 +0000 |
commit | b4d67b593e917c53f570540ad950e52873bd0aa4 (patch) | |
tree | a276530296feddb63f0bfcb904c1b65b42290603 /llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h | |
parent | 69bd9ca91cc678ba7da002d6cbb0269d57d8decd (diff) | |
download | bcm5719-llvm-b4d67b593e917c53f570540ad950e52873bd0aa4.tar.gz bcm5719-llvm-b4d67b593e917c53f570540ad950e52873bd0aa4.zip |
[SystemZ] Remove "virtual" from override methods
Also fix a couple of cases where "override" was missing. No behavioural
change intended.
llvm-svn: 203110
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h b/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h index 01b8df0fda8..699718f5c80 100644 --- a/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h +++ b/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h @@ -39,11 +39,11 @@ public: Create(const GlobalValue *GV, SystemZCP::SystemZCPModifier Modifier); // Override MachineConstantPoolValue. - virtual unsigned getRelocationInfo() const override; - virtual int getExistingMachineCPValue(MachineConstantPool *CP, - unsigned Alignment) override; - virtual void addSelectionDAGCSEId(FoldingSetNodeID &ID) override; - virtual void print(raw_ostream &O) const override; + unsigned getRelocationInfo() const override; + int getExistingMachineCPValue(MachineConstantPool *CP, + unsigned Alignment) override; + void addSelectionDAGCSEId(FoldingSetNodeID &ID) override; + void print(raw_ostream &O) const override; // Access SystemZ-specific fields. const GlobalValue *getGlobalValue() const { return GV; } |