aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-27 22:08:52 +0000
committerChris Lattner <sabre@nondot.org>2003-01-27 22:08:52 +0000
commita892a3a08e109c0aa466b92f7e729e803d508099 (patch)
treebad71a1e5669355e1a30df2c37bf484f8108c2c3
parent0ea3e6dc4162d1af9f22ca41d14799b834920eb0 (diff)
New helper header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5423 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Instructions.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
new file mode 100644
index 0000000000..6f56045a27
--- /dev/null
+++ b/include/llvm/Instructions.h
@@ -0,0 +1,18 @@
+//===-- llvm/Instructions.h - Instruction subclass definitions --*- C++ -*-===//
+//
+// This file exposes the class definitions of all of the subclasses of the
+// Instruction class. This is meant to be an easy way to get access to all
+// instruction subclasses.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_INSTRUCTIONS_H
+#define LLVM_INSTRUCTIONS_H
+
+#include "llvm/iTerminators.h" // Terminator instructions
+#include "llvm/iPHINode.h" // The PHI node instruction
+#include "llvm/iOperators.h" // Binary operator instructions
+#include "llvm/iMemory.h" // Memory related instructions
+#include "llvm/iOther.h" // Everything else
+
+#endif