Remove spurious consts. This fixes warnings with compilers that

are strict about such things.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41956 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2007-09-14 20:08:19 +00:00
parent 7effac5475
commit cb648f90a2
5 changed files with 7 additions and 7 deletions

View File

@ -363,7 +363,7 @@ public:
/// getOpcode - Returns the opcode of this MachineInstr.
///
const int getOpcode() const;
int getOpcode() const;
/// Access to explicit operands of the instruction.
///

View File

@ -116,7 +116,7 @@ MachineInstr::~MachineInstr() {
/// getOpcode - Returns the opcode of this MachineInstr.
///
const int MachineInstr::getOpcode() const {
int MachineInstr::getOpcode() const {
return TID->Opcode;
}

View File

@ -1629,7 +1629,7 @@ APFloat::convertF80LongDoubleAPFloatToAPInt() const {
APInt
APFloat::convertDoubleAPFloatToAPInt() const {
assert(semantics == (const llvm::fltSemantics* const)&IEEEdouble);
assert(semantics == (const llvm::fltSemantics*)&IEEEdouble);
assert (partCount()==1);
uint64_t myexponent, mysignificand;
@ -1659,7 +1659,7 @@ APFloat::convertDoubleAPFloatToAPInt() const {
APInt
APFloat::convertFloatAPFloatToAPInt() const {
assert(semantics == (const llvm::fltSemantics* const)&IEEEsingle);
assert(semantics == (const llvm::fltSemantics*)&IEEEsingle);
assert (partCount()==1);
uint32_t myexponent, mysignificand;

View File

@ -196,9 +196,9 @@ Program::ExecuteAndWait(const Path& path,
// Execute!
if (envp != 0)
execve (path.c_str(), (char** const)args, (char**)envp);
execve (path.c_str(), (char**)args, (char**)envp);
else
execv (path.c_str(), (char** const)args);
execv (path.c_str(), (char**)args);
// If the execve() failed, we should exit and let the parent pick up
// our non-zero exit status.
exit (errno);

View File

@ -45,7 +45,7 @@ namespace llvm {
const std::vector<MVT::ValueType> &getValueTypes() const { return VTs; }
unsigned getNumValueTypes() const { return VTs.size(); }
const MVT::ValueType getValueTypeNum(unsigned VTNum) const {
MVT::ValueType getValueTypeNum(unsigned VTNum) const {
if (VTNum < VTs.size())
return VTs[VTNum];
assert(0 && "VTNum greater than number of ValueTypes in RegClass!");