mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160475 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -3034,9 +3034,11 @@ TargetLowering::AsmOperandInfoVector TargetLowering::ParseConstraints(
|
||||
|
||||
if (OpInfo.ConstraintVT != Input.ConstraintVT) {
|
||||
std::pair<unsigned, const TargetRegisterClass*> MatchRC =
|
||||
getRegForInlineAsmConstraint(OpInfo.ConstraintCode, OpInfo.ConstraintVT);
|
||||
getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
|
||||
OpInfo.ConstraintVT);
|
||||
std::pair<unsigned, const TargetRegisterClass*> InputRC =
|
||||
getRegForInlineAsmConstraint(Input.ConstraintCode, Input.ConstraintVT);
|
||||
getRegForInlineAsmConstraint(Input.ConstraintCode,
|
||||
Input.ConstraintVT);
|
||||
if ((OpInfo.ConstraintVT.isInteger() !=
|
||||
Input.ConstraintVT.isInteger()) ||
|
||||
(MatchRC.second != InputRC.second)) {
|
||||
|
@@ -93,7 +93,8 @@ getELFKindForNamedSection(StringRef Name, SectionKind K) {
|
||||
// N.B.: The defaults used in here are no the same ones used in MC.
|
||||
// We follow gcc, MC follows gas. For example, given ".section .eh_frame",
|
||||
// both gas and MC will produce a section with no flags. Given
|
||||
// section(".eh_frame") gcc will produce
|
||||
// section(".eh_frame") gcc will produce:
|
||||
//
|
||||
// .section .eh_frame,"a",@progbits
|
||||
if (Name.empty() || Name[0] != '.') return K;
|
||||
|
||||
|
Reference in New Issue
Block a user