summaryrefslogtreecommitdiff
path: root/include/llvm/Use.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Use.h')
-rw-r--r--include/llvm/Use.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h
index 507504ecdc..47511c8e18 100644
--- a/include/llvm/Use.h
+++ b/include/llvm/Use.h
@@ -208,6 +208,15 @@ public:
unsigned getOperandNo() const;
};
+//===----------------------------------------------------------------------===//
+// AugmentedUse layout struct
+//===----------------------------------------------------------------------===//
+
+struct AugmentedUse : public Use {
+ PointerIntPair<User*, 1, Tag> ref;
+ AugmentedUse(); // not implemented
+};
+
} // End llvm namespace
#endif