Open llvmbot opened 7 years ago
int main() { __asm { jne short foo foo: push ebx } }
cl compiles it, but clang-cl emits:
test.c(3,13) : error: expected identifier jne short foo ^ test.c(3,13) : error: use of undeclared label 'short foo foo: push ebx' 2 errors generated.
mentioned in issue llvm/llvm-project#7187
Extended Description
int main() { __asm { jne short foo foo: push ebx } }
cl compiles it, but clang-cl emits:
test.c(3,13) : error: expected identifier jne short foo ^ test.c(3,13) : error: use of undeclared label 'short foo foo: push ebx' 2 errors generated.