mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
I forgot the #ifdef _MSC_VER guard in my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3aca879906
commit
e4807c1ba1
@ -466,7 +466,9 @@ static void EncodeFixedValueType(MVT::SimpleValueType VT,
|
|||||||
Sig.push_back(~0U);
|
Sig.push_back(~0U);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma optimize("",off) // MSVC 2010 optimizer can't deal with this function.
|
#pragma optimize("",off) // MSVC 2010 optimizer can't deal with this function.
|
||||||
|
#endif
|
||||||
|
|
||||||
static void EncodeFixedType(Record *R, SmallVectorImpl<unsigned> &Sig) {
|
static void EncodeFixedType(Record *R, SmallVectorImpl<unsigned> &Sig) {
|
||||||
|
|
||||||
@ -532,7 +534,10 @@ static void EncodeFixedType(Record *R, SmallVectorImpl<unsigned> &Sig) {
|
|||||||
assert(VT != MVT::isVoid);
|
assert(VT != MVT::isVoid);
|
||||||
EncodeFixedValueType(VT, Sig);
|
EncodeFixedValueType(VT, Sig);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma optimize("",on)
|
#pragma optimize("",on)
|
||||||
|
#endif
|
||||||
|
|
||||||
/// ComputeFixedEncoding - If we can encode the type signature for this
|
/// ComputeFixedEncoding - If we can encode the type signature for this
|
||||||
/// intrinsic into 32 bits, return it. If not, return ~0U.
|
/// intrinsic into 32 bits, return it. If not, return ~0U.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user