| commit | df1ecbd734f92c95daf7336918c6c9e27a765f80 | [log] [tgz] |
|---|---|---|
| author | Michael J. Spencer <bigcheesegs@gmail.com> | Fri May 24 22:23:49 2013 +0000 |
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | Fri May 24 22:23:49 2013 +0000 |
| tree | 6e2d6d0bd4a705ae5b1bae7676bb1bc61ec20af1 | |
| parent | 795ecd2c430698d70f3f81900bee2963adcb57d7 [diff] [blame] |
Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.
llvm-svn: 182680
diff --git a/llvm/lib/Target/Mips/MipsISelLowering.cpp b/llvm/lib/Target/Mips/MipsISelLowering.cpp index 1678998..666fbdd 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsISelLowering.cpp
@@ -70,7 +70,7 @@ return false; Size = CountPopulation_64(I); - Pos = CountTrailingZeros_64(I); + Pos = countTrailingZeros(I); return true; }