From 26b7aa020bdcabd10ba1c81226327007321aeb89 Mon Sep 17 00:00:00 2001 From: Pete Cooper Date: Tue, 12 May 2015 20:05:23 +0000 Subject: [PATCH] Add a const method to iterator over PHI incoming values. This will be used in the next commit which converts code to use incoming_values(). llvm-svn: 237168 --- llvm/include/llvm/IR/Instructions.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/include/llvm/IR/Instructions.h b/llvm/include/llvm/IR/Instructions.h index 5b37d4b..e8e7069 100644 --- a/llvm/include/llvm/IR/Instructions.h +++ b/llvm/include/llvm/IR/Instructions.h @@ -2278,6 +2278,8 @@ public: op_range incoming_values() { return operands(); } + const_op_range incoming_values() const { return operands(); } + /// getNumIncomingValues - Return the number of incoming edges /// unsigned getNumIncomingValues() const { return getNumOperands(); } -- 2.7.4