diff --git a/llvm/include/llvm/Target/TargetMachine.h b/llvm/include/llvm/Target/TargetMachine.h index 91e4715eea3a..4c1f927869f9 100644 --- a/llvm/include/llvm/Target/TargetMachine.h +++ b/llvm/include/llvm/Target/TargetMachine.h @@ -107,7 +107,7 @@ public: void resetTargetOptions(const MachineFunction *MF) const; // Interfaces to the major aspects of target machine information: - // + // // -- Instruction opcode and operand information // -- Pipelines and scheduling information // -- Stack frame information diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index df4a03c9e8ba..b367287b5308 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -67,7 +67,7 @@ TargetMachine::~TargetMachine() { void TargetMachine::resetTargetOptions(const MachineFunction *MF) const { const Function *F = MF->getFunction(); TargetOptions &TO = MF->getTarget().Options; - + #define RESET_OPTION(X, Y) \ do { \ if (F->hasFnAttribute(Y)) \