1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Use the assignment operator.

No functionality change.

llvm-svn: 211319
This commit is contained in:
Rafael Espindola 2014-06-19 22:27:46 +00:00
parent 402a76c96d
commit 4cbec707e6

View File

@ -124,28 +124,7 @@ bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
}
void LTOCodeGenerator::setTargetOptions(TargetOptions options) {
Options.LessPreciseFPMADOption = options.LessPreciseFPMADOption;
Options.NoFramePointerElim = options.NoFramePointerElim;
Options.AllowFPOpFusion = options.AllowFPOpFusion;
Options.UnsafeFPMath = options.UnsafeFPMath;
Options.NoInfsFPMath = options.NoInfsFPMath;
Options.NoNaNsFPMath = options.NoNaNsFPMath;
Options.HonorSignDependentRoundingFPMathOption =
options.HonorSignDependentRoundingFPMathOption;
Options.UseSoftFloat = options.UseSoftFloat;
Options.FloatABIType = options.FloatABIType;
Options.NoZerosInBSS = options.NoZerosInBSS;
Options.GuaranteedTailCallOpt = options.GuaranteedTailCallOpt;
Options.DisableTailCalls = options.DisableTailCalls;
Options.StackAlignmentOverride = options.StackAlignmentOverride;
Options.TrapFuncName = options.TrapFuncName;
Options.PositionIndependentExecutable = options.PositionIndependentExecutable;
Options.UseInitArray = options.UseInitArray;
Options.DataSections = options.DataSections;
Options.FunctionSections = options.FunctionSections;
Options.MCOptions = options.MCOptions;
Options.JTType = options.JTType;
Options = options;
}
void LTOCodeGenerator::setDebugInfo(lto_debug_model debug) {