Skip to content

Commit eebe538

Browse files
committed
Fix minor lexical problems
1 parent 6e491cd commit eebe538

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/Target/TargetSelectionDAG.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def SDTOther : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
109109
def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'.
110110
def SDTUnaryOp : SDTypeProfile<1, 1, []>; // for bitconvert.
111111

112-
def SDTPtrAddOp : SDTypeProfile<1, 2, [ // ptradd
112+
def SDTPtrAddOp : SDTypeProfile<1, 2, [ // ptradd
113113
SDTCisSameAs<0, 1>, SDTCisInt<2>, SDTCisPtrTy<1>
114114
]>;
115115
def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.

llvm/lib/Target/AArch64/AArch64TargetMachine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,4 +931,4 @@ bool AArch64TargetMachine::parseMachineFunctionInfo(
931931

932932
bool AArch64TargetMachine::shouldPreservePtrArith(const Function &F) const {
933933
return getSubtargetImpl(F)->hasCPA();
934-
}
934+
}

0 commit comments

Comments
 (0)