Home
last modified time | relevance | path

Searched refs:DisableNonVolatileCR (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dppc-disable-non-volatile-cr.ll8 define dso_local signext i32 @DisableNonVolatileCR(i32 signext %a, i32 signext %b) {
9 ; CHECK-DISABLE-LABEL: DisableNonVolatileCR:
18 ; CHECK-ENABLE-LABEL: DisableNonVolatileCR:
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h85 bool DisableNonVolatileCR = false; variable
212 void setDisableNonVolatileCR() { DisableNonVolatileCR = true; } in setDisableNonVolatileCR()
213 bool isNonVolatileCRDisabled() const { return DisableNonVolatileCR; } in isNonVolatileCRDisabled()
H A DPPCMachineFunctionInfo.cpp24 : DisableNonVolatileCR(PPCDisableNonVolatileCR) {} in PPCFunctionInfo()