mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
ARM: 80-column
clang-format a function with an overly long string constant. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
68445710a2
commit
f5cd1efe99
@ -64,10 +64,11 @@ static bool getMCRDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
|
||||
}
|
||||
|
||||
static bool getITDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
|
||||
std::string &Info) {
|
||||
if (STI.getFeatureBits() & llvm::ARM::HasV8Ops &&
|
||||
MI.getOperand(1).isImm() && MI.getOperand(1).getImm() != 8) {
|
||||
Info = "applying IT instruction to more than one subsequent instruction is deprecated";
|
||||
std::string &Info) {
|
||||
if (STI.getFeatureBits() & llvm::ARM::HasV8Ops && MI.getOperand(1).isImm() &&
|
||||
MI.getOperand(1).getImm() != 8) {
|
||||
Info = "applying IT instruction to more than one subsequent instruction is "
|
||||
"deprecated";
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user