Add RPR prototype here


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8314 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index d896506..50c6b21 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -16,6 +16,14 @@
 
 //===----------------------------------------------------------------------===//
 //
+// RaisePointerReferences - Try to eliminate as many pointer arithmetic
+// expressions as possible, by converting expressions to use getelementptr and
+// friends.
+//
+Pass *createRaisePointerReferencesPass();
+
+//===----------------------------------------------------------------------===//
+//
 // Constant Propagation Pass - A worklist driven constant propagation pass
 //
 Pass *createConstantPropagationPass();