diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2008-08-08 06:16:31 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2008-08-08 06:16:31 +0000 |
commit | 65ad452536526fe9a80023abc3703a7cc7987858 (patch) | |
tree | a083be0fb9605771a06fd7d3557ff7f3384f903b /lib/Target/Mips/MipsSubtarget.cpp | |
parent | fc65d38085e92fa3901104c762a725788f5c9de5 (diff) |
Support added for ctlz intrinsic, test case added.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.cpp')
-rw-r--r-- | lib/Target/Mips/MipsSubtarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp index d8c0797027..b1e1806fc4 100644 --- a/lib/Target/Mips/MipsSubtarget.cpp +++ b/lib/Target/Mips/MipsSubtarget.cpp @@ -57,6 +57,7 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, MipsArchVersion = Mips2; HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet) HasSEInReg = true; + HasBitCount = true; } // Abicall is the default for O32 ABI and is ignored |