mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
addConstantValue, addConstantFPValue never returned anything but
true, so remove the return value and propagate accordingly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185490 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -267,13 +267,13 @@ public:
|
||||
const MachineLocation &Location, bool Indirect = false);
|
||||
|
||||
/// addConstantValue - Add constant value entry in variable DIE.
|
||||
bool addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty);
|
||||
bool addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
|
||||
bool addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
|
||||
void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty);
|
||||
void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
|
||||
void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
|
||||
|
||||
/// addConstantFPValue - Add constant value entry in variable DIE.
|
||||
bool addConstantFPValue(DIE *Die, const MachineOperand &MO);
|
||||
bool addConstantFPValue(DIE *Die, const ConstantFP *CFP);
|
||||
void addConstantFPValue(DIE *Die, const MachineOperand &MO);
|
||||
void addConstantFPValue(DIE *Die, const ConstantFP *CFP);
|
||||
|
||||
/// addTemplateParams - Add template parameters in buffer.
|
||||
void addTemplateParams(DIE &Buffer, DIArray TParams);
|
||||
|
Reference in New Issue
Block a user