diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2007-08-18 02:18:07 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2007-08-18 02:18:07 +0000 |
commit | 6d32ca076283b50e93e00a98e4473767f1a31e5a (patch) | |
tree | 819ca35dd5634f49b77408ba78b702625fea3883 /lib/Target/Mips/MipsSubtarget.cpp | |
parent | 7ff6fa25037d207e31f65bedc8616a90f61abc25 (diff) |
support for Schedule included on Mips.td
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.cpp')
-rw-r--r-- | lib/Target/Mips/MipsSubtarget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp index a394f774ab..4665279df6 100644 --- a/lib/Target/Mips/MipsSubtarget.cpp +++ b/lib/Target/Mips/MipsSubtarget.cpp @@ -17,7 +17,8 @@ using namespace llvm; MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, - const std::string &FS) : isR3000(false) + const std::string &FS) : + IsMipsIII(false) { std::string CPU = "generic"; |