this. The correct replacement for "Y" and "Yt" is "x".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72765
91177308-0d34-0410-b5e6-
96231b3b80d8
// instructions.
Info.setAllowsRegister();
return true;
- case 'Y':
- ++Name;
- if (*Name == 't') {
- Info.setAllowsRegister();
- return true;
- }
- return false;
}
}
+++ /dev/null
-// RUN: clang-cc %s -triple i386-pc-linux-gnu -target-feature=+sse2 -verify -fsyntax-only
-
-// PR3678
-int test8() {
- asm("%0" : : "Yt"(1.0));
- asm("%0" : : "Yy"(1.0)); // expected-error {{invalid input constraint 'Yy' in asm}}
-}