aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Instructions.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-25 23:17:54 +0000
committerDan Gohman <gohman@apple.com>2009-08-25 23:17:54 +0000
commit1c8a23c440b1665ba422778cdc74a0c59ecaf39e (patch)
tree5d1c103f953a54dcfcff074c5fa800739b1b140a /include/llvm/Instructions.h
parent2f3fa88a2515e1ba9c5a3a8cc4add0b79b492ba0 (diff)
downloadexternal_llvm-1c8a23c440b1665ba422778cdc74a0c59ecaf39e.tar.gz
external_llvm-1c8a23c440b1665ba422778cdc74a0c59ecaf39e.tar.bz2
external_llvm-1c8a23c440b1665ba422778cdc74a0c59ecaf39e.zip
Eliminate the unused Context argument on one of the ICmpInst and FCmpInst
constructors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r--include/llvm/Instructions.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 4da87d1b06..b5d842a6d5 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -696,7 +696,6 @@ public:
/// @brief Constructor with no-insertion semantics
ICmpInst(
- LLVMContext &Context, ///< Context to construct within
Predicate pred, ///< The predicate to use for the comparison
Value *LHS, ///< The left-hand-side of the expression
Value *RHS, ///< The right-hand-side of the expression
@@ -867,7 +866,6 @@ public:
/// @brief Constructor with no-insertion semantics
FCmpInst(
- LLVMContext &Context, ///< Context to build in
Predicate pred, ///< The predicate to use for the comparison
Value *LHS, ///< The left-hand-side of the expression
Value *RHS, ///< The right-hand-side of the expression