forked from OSchip/llvm-project
Updating PPC target to ignore commas in asm contrains, as apparently that is what gcc does.
llvm-svn: 107953
This commit is contained in:
parent
992d25da71
commit
7099f0c0d5
|
@ -449,6 +449,8 @@ public:
|
|||
TargetInfo::ConstraintInfo &Info) const {
|
||||
switch (*Name) {
|
||||
default: return false;
|
||||
case ',': // Ignore ','s
|
||||
break;
|
||||
case 'O': // Zero
|
||||
break;
|
||||
case 'b': // Base register
|
||||
|
|
Loading…
Reference in New Issue