summaryrefslogtreecommitdiff
path: root/lib/Target/NVPTX
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-06-27 01:27:06 +0000
committerEric Christopher <echristo@gmail.com>2014-06-27 01:27:06 +0000
commit6c57c3336cc53b02db05cbd3cd725a40698e5098 (patch)
treecc366348eee7ebdd65d1705507098c617959e6e0 /lib/Target/NVPTX
parentac736351f0b446b2228feee8e2bb451946fd3013 (diff)
downloadllvm-6c57c3336cc53b02db05cbd3cd725a40698e5098.tar.gz
llvm-6c57c3336cc53b02db05cbd3cd725a40698e5098.tar.bz2
llvm-6c57c3336cc53b02db05cbd3cd725a40698e5098.tar.xz
Remove comment that duplicated information in the constructor
that it's after. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/NVPTX')
-rw-r--r--lib/Target/NVPTX/NVPTXTargetMachine.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/NVPTX/NVPTXTargetMachine.cpp b/lib/Target/NVPTX/NVPTXTargetMachine.cpp
index 30583b0ff8..b2b2144068 100644
--- a/lib/Target/NVPTX/NVPTXTargetMachine.cpp
+++ b/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();
}