[ppc64] Reenable sibling call optimization on ppc64 since fixed tsan library tail...
authorChuang-Yu Cheng <cycheng@multicorewareinc.com>
Tue, 26 Apr 2016 07:38:24 +0000 (07:38 +0000)
committerChuang-Yu Cheng <cycheng@multicorewareinc.com>
Tue, 26 Apr 2016 07:38:24 +0000 (07:38 +0000)
print-stack-trace.cc test failure of compiler-rt has been fixed by
r266869 (http://reviews.llvm.org/D19148), so reenable sibling call
optimization on ppc64

Reviewers: nemanjai kbarton
llvm-svn: 267527

llvm/docs/ReleaseNotes.rst
llvm/lib/Target/PowerPC/PPCISelLowering.cpp

index df34d2a..6d1f74c 100644 (file)
@@ -114,6 +114,7 @@ Changes to the PowerPC Target
 
  Moved some optimizations from O3 to O2 (D18562)
 
+* Enable sibling call optimization on ppc64 ELFv1/ELFv2 abi
 
 Changes to the X86 Target
 -------------------------
index 0ae4e5e..72335a4 100644 (file)
@@ -55,7 +55,7 @@ cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hi
 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
 
-static cl::opt<bool> DisableSCO("disable-ppc-sco", cl::init(true),
+static cl::opt<bool> DisableSCO("disable-ppc-sco",
 cl::desc("disable sibling call optimization on ppc"), cl::Hidden);
 
 STATISTIC(NumTailCalls, "Number of tail calls");