aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/iOperators.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/iOperators.h')
-rw-r--r--include/llvm/iOperators.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/iOperators.h b/include/llvm/iOperators.h
index 5d02a40..7cbaecf 100644
--- a/include/llvm/iOperators.h
+++ b/include/llvm/iOperators.h
@@ -15,9 +15,8 @@
//
class GenericUnaryInst : public UnaryOperator {
public:
- GenericUnaryInst(UnaryOps Opcode, Value *S1, const Type *ResultTy = 0,
- const string &Name = "")
- : UnaryOperator(S1, Opcode, ResultTy, Name) {
+ GenericUnaryInst(UnaryOps Opcode, Value *S1, const string &Name = "")
+ : UnaryOperator(S1, Opcode, Name) {
}
virtual const char *getOpcodeName() const;