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 | 7fdc6707acf52ec1e6ff9a7b6fe2b871718b2969 (patch) | |
tree | 3f8189cea234c007a6eb4cad3656c2ca8e546b3c /clang/lib/CodeGen | |
parent | 87717773e26109639710093665d2c192b1b169e8 (diff) | |
download | bcm5719-llvm-7fdc6707acf52ec1e6ff9a7b6fe2b871718b2969.tar.gz bcm5719-llvm-7fdc6707acf52ec1e6ff9a7b6fe2b871718b2969.zip |
Clang support for ARM Uv/Uy/Uq inline-asm constraints.
rdar://problem/9037836
llvm-svn: 132737
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 782ff061606..a982621be79 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/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 '*': |