Skip to content
Snippets Groups Projects
Commit ec3a5d89 authored by John Thompson's avatar John Thompson
Browse files

Updating PPC target to ignore commas in asm contrains, as apparently that is what gcc does.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107953 91177308-0d34-0410-b5e6-96231b3b80d8
parent d6ac4524
No related branches found
No related tags found
No related merge requests found
...@@ -449,6 +449,8 @@ public: ...@@ -449,6 +449,8 @@ public:
TargetInfo::ConstraintInfo &Info) const { TargetInfo::ConstraintInfo &Info) const {
switch (*Name) { switch (*Name) {
default: return false; default: return false;
case ',': // Ignore ','s
break;
case 'O': // Zero case 'O': // Zero
break; break;
case 'b': // Base register case 'b': // Base register
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment