diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-11-20 01:22:35 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-11-20 01:22:35 +0000 |
commit | d9436b6837e27d93a2ac82ef7dfc2c742be0fe69 (patch) | |
tree | 085e61911bc5ecbd81c027bd5a5f163810088c47 /llvm/lib/VMCore/Instruction.cpp | |
parent | 9f4448a26ef8f7e8be847bf7bce4b6e525743af1 (diff) | |
download | bcm5719-llvm-d9436b6837e27d93a2ac82ef7dfc2c742be0fe69.tar.gz bcm5719-llvm-d9436b6837e27d93a2ac82ef7dfc2c742be0fe69.zip |
For PR950:
First in a series of patches to convert SetCondInst into ICmpInst and
FCmpInst using only two opcodes and having the instructions contain their
predicate value. Nothing uses these classes yet. More patches to follow.
llvm-svn: 31867
Diffstat (limited to 'llvm/lib/VMCore/Instruction.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp index 70b375902dc..64a9e12f82d 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/lib/VMCore/Instruction.cpp @@ -11,10 +11,10 @@ // //===----------------------------------------------------------------------===// +#include "llvm/Type.h" #include "llvm/Instructions.h" #include "llvm/Function.h" #include "llvm/SymbolTable.h" -#include "llvm/Type.h" #include "llvm/Support/LeakDetector.h" using namespace llvm; |