blackliner added a comment.
I am getting errors with clang-tidy, is this the right place to ask for those
additional constraints?
CUDA allows a few more output constraints -->
https://docs.nvidia.com/cuda/inline-ptx-assembly/index.html#constraints
1.1.2. Constraints
There is a separate con
This revision was automatically updated to reflect the committed changes.
Closed by commit rL306297: [inline asm][gcc-compatiblity] "=i" output
constraint support (authored by myatsina).
Changed prior to commit:
https://reviews.llvm.org/D31383?vs=97602&id=103967#toc
Repository:
rL LLVM
http
rnk accepted this revision.
rnk added a comment.
This revision is now accepted and ready to land.
lgtm
https://reviews.llvm.org/D31383
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
zizhar added a comment.
Ping
https://reviews.llvm.org/D31383
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
zizhar updated this revision to Diff 97602.
https://reviews.llvm.org/D31383
Files:
lib/Basic/TargetInfo.cpp
test/Sema/asm.c
Index: test/Sema/asm.c
===
--- test/Sema/asm.c
+++ test/Sema/asm.c
@@ -160,6 +160,41 @@
return ret;
zizhar added inline comments.
Comment at: lib/Basic/TargetInfo.cpp:506
case '!': // Disparage severely.
case '*': // Ignore for choosing register preferences.
+case 'i': // Ignore i as output constraint (match from the other chars)
ahatanak wrote:
>
ahatanak added inline comments.
Comment at: lib/Basic/TargetInfo.cpp:506
case '!': // Disparage severely.
case '*': // Ignore for choosing register preferences.
+case 'i': // Ignore i as output constraint (match from the other chars)
If we are going