diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-08-22 20:51:05 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-08-22 20:51:05 +0000 |
commit | ce1c5c11e59f565a2fcb5e53b407233c999884f1 (patch) | |
tree | a80ccea057402e75cf99deac3f9ed5c6029653e1 /include/llvm/CodeGen/FastISel.h | |
parent | fe91948efff85cf0d5fbc60c9434c652694e4f50 (diff) | |
download | external_llvm-ce1c5c11e59f565a2fcb5e53b407233c999884f1.zip external_llvm-ce1c5c11e59f565a2fcb5e53b407233c999884f1.tar.gz external_llvm-ce1c5c11e59f565a2fcb5e53b407233c999884f1.tar.bz2 |
Reverting r55190, r55191, and r55192. They broke the build with this error message:
{standard input}:17:bad register name `%sil'
make[4]: *** [libgcc/./_addvsi3.o] Error 1
make[4]: *** Waiting for unfinished jobs....
{standard input}:23:bad register name `%dil'
{standard input}:28:bad register name `%dil'
make[4]: *** [libgcc/./_addvdi3.o] Error 1
{standard input}:18:bad register name `%sil'
make[4]: *** [libgcc/./_subvsi3.o] Error 1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55200 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/FastISel.h')
-rw-r--r-- | include/llvm/CodeGen/FastISel.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index 4355113..3939594 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -17,7 +17,6 @@ #include "llvm/BasicBlock.h" #include "llvm/ADT/DenseMap.h" #include "llvm/CodeGen/SelectionDAGNodes.h" -#include <map> namespace llvm { @@ -53,7 +52,6 @@ public: BasicBlock::iterator SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End, DenseMap<const Value*, unsigned> &ValueMap, - std::map<const BasicBlock*, MachineBasicBlock *> &MBBMap, MachineBasicBlock *MBB); virtual ~FastISel(); |