Commit ea8555b
authored
[AArch64] Avoid warning about comparison of different signedness. NFC. (llvm#159337)
This fixes the following warning when compiled with GCC:
../lib/Target/AArch64/AArch64ISelLowering.cpp: In function ‘bool shouldLowerTailCallStackArg(const llvm::MachineFunction&, const llvm::CCValAssign&, llvm::SDValue, llvm::ISD::ArgFlagsTy, int)’:
../lib/Target/AArch64/AArch64ISelLowering.cpp:9310: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int64_t’ {aka ‘long int’} [-Wsign-compare]
9310 | if (SizeInBits / 8 != MFI.getObjectSize(FI))
|1 parent 4ff113f commit ea8555b
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9306 | 9306 | | |
9307 | 9307 | | |
9308 | 9308 | | |
9309 | | - | |
| 9309 | + | |
9310 | 9310 | | |
9311 | 9311 | | |
9312 | 9312 | | |
| |||
0 commit comments