Remove comment that duplicated information in the constructor
authorEric Christopher <echristo@gmail.com>
Fri, 27 Jun 2014 01:27:06 +0000 (01:27 +0000)
committerEric Christopher <echristo@gmail.com>
Fri, 27 Jun 2014 01:27:06 +0000 (01:27 +0000)
that it's after.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211839 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/NVPTX/NVPTXTargetMachine.cpp

index 30583b0ff8c1885728f2aec73e96a93d4f1ca77b..b2b2144068ace4337745f69b2cd06b199306e331 100644 (file)
@@ -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();
 }