Loading llvm/lib/CodeGen/MachineVerifier.cpp +7 −11 Original line number Diff line number Diff line Loading @@ -16,10 +16,8 @@ // Register live intervals: Registers must be defined only once, and must be // defined before use. // // The machine code verifier is enabled from LLVMTargetMachine.cpp with the // command-line option -verify-machineinstrs, or by defining the environment // variable LLVM_VERIFY_MACHINEINSTRS to the name of a file that will receive // the verifier errors. // The machine code verifier is enabled with the command-line option // -verify-machineinstrs. //===----------------------------------------------------------------------===// #include "llvm/ADT/BitVector.h" Loading Loading @@ -376,13 +374,11 @@ unsigned MachineVerifier::verify(MachineFunction &MF) { if (isFunctionFailedISel) return foundErrors; isFunctionRegBankSelected = !isFunctionFailedISel && MF.getProperties().hasProperty( isFunctionRegBankSelected = MF.getProperties().hasProperty( MachineFunctionProperties::Property::RegBankSelected); isFunctionSelected = !isFunctionFailedISel && MF.getProperties().hasProperty( isFunctionSelected = MF.getProperties().hasProperty( MachineFunctionProperties::Property::Selected); LiveVars = nullptr; LiveInts = nullptr; LiveStks = nullptr; Loading Loading
llvm/lib/CodeGen/MachineVerifier.cpp +7 −11 Original line number Diff line number Diff line Loading @@ -16,10 +16,8 @@ // Register live intervals: Registers must be defined only once, and must be // defined before use. // // The machine code verifier is enabled from LLVMTargetMachine.cpp with the // command-line option -verify-machineinstrs, or by defining the environment // variable LLVM_VERIFY_MACHINEINSTRS to the name of a file that will receive // the verifier errors. // The machine code verifier is enabled with the command-line option // -verify-machineinstrs. //===----------------------------------------------------------------------===// #include "llvm/ADT/BitVector.h" Loading Loading @@ -376,13 +374,11 @@ unsigned MachineVerifier::verify(MachineFunction &MF) { if (isFunctionFailedISel) return foundErrors; isFunctionRegBankSelected = !isFunctionFailedISel && MF.getProperties().hasProperty( isFunctionRegBankSelected = MF.getProperties().hasProperty( MachineFunctionProperties::Property::RegBankSelected); isFunctionSelected = !isFunctionFailedISel && MF.getProperties().hasProperty( isFunctionSelected = MF.getProperties().hasProperty( MachineFunctionProperties::Property::Selected); LiveVars = nullptr; LiveInts = nullptr; LiveStks = nullptr; Loading