diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-01-27 22:08:52 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-01-27 22:08:52 +0000 |
| commit | 6ffcdb5befb9ab19aba77bd6f4ee57adb90bd5f0 (patch) | |
| tree | 37884535225c3ace99a3c84123aa7e46d9987318 /llvm | |
| parent | d1fd7e958cf4d6a61bd9788f478b3d2dc82b1e75 (diff) | |
| download | bcm5719-llvm-6ffcdb5befb9ab19aba77bd6f4ee57adb90bd5f0.tar.gz bcm5719-llvm-6ffcdb5befb9ab19aba77bd6f4ee57adb90bd5f0.zip | |
New helper header
llvm-svn: 5423
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Instructions.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/include/llvm/Instructions.h b/llvm/include/llvm/Instructions.h new file mode 100644 index 00000000000..6f56045a274 --- /dev/null +++ b/llvm/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 |

