mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
Remove spurious consts. This fixes warnings with compilers that
are strict about such things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41956 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1629,7 +1629,7 @@ APFloat::convertF80LongDoubleAPFloatToAPInt() const {
|
||||
|
||||
APInt
|
||||
APFloat::convertDoubleAPFloatToAPInt() const {
|
||||
assert(semantics == (const llvm::fltSemantics* const)&IEEEdouble);
|
||||
assert(semantics == (const llvm::fltSemantics*)&IEEEdouble);
|
||||
assert (partCount()==1);
|
||||
|
||||
uint64_t myexponent, mysignificand;
|
||||
@ -1659,7 +1659,7 @@ APFloat::convertDoubleAPFloatToAPInt() const {
|
||||
|
||||
APInt
|
||||
APFloat::convertFloatAPFloatToAPInt() const {
|
||||
assert(semantics == (const llvm::fltSemantics* const)&IEEEsingle);
|
||||
assert(semantics == (const llvm::fltSemantics*)&IEEEsingle);
|
||||
assert (partCount()==1);
|
||||
|
||||
uint32_t myexponent, mysignificand;
|
||||
|
Reference in New Issue
Block a user