diff options
author | Dan Gohman <gohman@apple.com> | 2010-06-24 14:30:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-06-24 14:30:44 +0000 |
commit | 4e39e9da0f3a435445261d0f796bb0913f3c2bf0 (patch) | |
tree | fccb6245a29b6688746f45b64362635721ce1f15 /include/llvm/Target | |
parent | fef8c4eb54b585b5a299910ccf5a8479f4982243 (diff) | |
download | external_llvm-4e39e9da0f3a435445261d0f796bb0913f3c2bf0.zip external_llvm-4e39e9da0f3a435445261d0f796bb0913f3c2bf0.tar.gz external_llvm-4e39e9da0f3a435445261d0f796bb0913f3c2bf0.tar.bz2 |
Reapply r106634, now that the bug it exposed is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index b44fa71..7ba67e4 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -773,14 +773,12 @@ public: SelectionDAG &DAG; bool LegalTys; bool LegalOps; - bool ShrinkOps; SDValue Old; SDValue New; explicit TargetLoweringOpt(SelectionDAG &InDAG, - bool LT, bool LO, - bool Shrink = false) : - DAG(InDAG), LegalTys(LT), LegalOps(LO), ShrinkOps(Shrink) {} + bool LT, bool LO) : + DAG(InDAG), LegalTys(LT), LegalOps(LO) {} bool LegalTypes() const { return LegalTys; } bool LegalOperations() const { return LegalOps; } |