On 5/16/18, Andrea Arteaga via cfe-users wrote:
> Thanks for your reply, John.
>
> I fully understand your points, I actually had the same concern that a
> reference-to-rvalue warning would be issued for perfectly reasonable and
> intended code.
For example,
vector ints{1,2,3,4,5};
auto i = ints
Hi,
I am trying to compile a .cc file using clang 5.0 for ARM 64-bit that has
some inline assembly. The inline assembly loads some value to 'q0'. I am
getting the error: *'unknown register name `q0`'*
I reproduced the issue with a simple file that only has the following:
*int foo(void){ __as