1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/include/llvm/Instructions.h
Chris Lattner 37a2301f9e New helper header
llvm-svn: 5423
2003-01-27 22:08:52 +00:00

19 lines
714 B
C++

//===-- 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