aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorStuart Hastings <stuart@apple.com>2011-06-07 23:45:05 +0000
committerStuart Hastings <stuart@apple.com>2011-06-07 23:45:05 +0000
commit002333f8b2cf1a8614e532f6ce366b21af85142c (patch)
tree4a0d00b35a47d56ff520a21395d7ec4a9320cc00 /lib/CodeGen/CGStmt.cpp
parentdb6393f259b8e634302e27d538ca4760f4221d91 (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.cpp2
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 '*':