diff options
author | Eric Christopher <echristo@gmail.com> | 2014-06-27 01:27:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-06-27 01:27:06 +0000 |
commit | a1869461e15a47857b2d5845f6071aeaffe3bb85 (patch) | |
tree | 26821c52c3d2fb838cc1707c7fa22d595e214f8c /llvm/lib | |
parent | e8f50281a9d691133cd3873b14993091aa3ad4aa (diff) | |
download | bcm5719-llvm-a1869461e15a47857b2d5845f6071aeaffe3bb85.tar.gz bcm5719-llvm-a1869461e15a47857b2d5845f6071aeaffe3bb85.zip |
Remove comment that duplicated information in the constructor
that it's after.
llvm-svn: 211839
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp b/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp index 30583b0ff8c..b2b2144068a 100644 --- a/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp +++ b/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp @@ -77,15 +77,15 @@ static std::string computeDataLayout(const NVPTXSubtarget &ST) { return Ret; } -NVPTXTargetMachine::NVPTXTargetMachine( - const Target &T, StringRef TT, StringRef CPU, StringRef FS, - const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, - CodeGenOpt::Level OL, bool is64bit) +NVPTXTargetMachine::NVPTXTargetMachine(const Target &T, StringRef TT, + StringRef CPU, StringRef FS, + const TargetOptions &Options, + Reloc::Model RM, CodeModel::Model CM, + CodeGenOpt::Level OL, bool is64bit) : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), Subtarget(TT, CPU, FS, is64bit), DL(computeDataLayout(Subtarget)), InstrInfo(*this), TLInfo(*this), TSInfo(&DL), - FrameLowering( - *this, is64bit) /*FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0)*/ { + FrameLowering(*this, is64bit) { initAsmInfo(); } |