diff options
author | Stuart Hastings <stuart@apple.com> | 2011-06-07 23:45:05 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2011-06-07 23:45:05 +0000 |
commit | 002333f8b2cf1a8614e532f6ce366b21af85142c (patch) | |
tree | 4a0d00b35a47d56ff520a21395d7ec4a9320cc00 /lib/CodeGen/CGStmt.cpp | |
parent | db6393f259b8e634302e27d538ca4760f4221d91 (diff) |
Clang support for ARM Uv/Uy/Uq inline-asm constraints.
rdar://problem/9037836
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | lib/CodeGen/CGStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp index 782ff06160..a982621be7 100644 --- a/lib/CodeGen/CGStmt.cpp +++ b/lib/CodeGen/CGStmt.cpp @@ -1222,7 +1222,7 @@ SimplifyConstraint(const char *Constraint, const TargetInfo &Target, while (*Constraint) { switch (*Constraint) { default: - Result += Target.convertConstraint(*Constraint); + Result += Target.convertConstraint(Constraint); break; // Ignore these case '*': |