LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 22013 - Missing inline asm constraint "Yz"
Summary: Missing inline asm constraint "Yz"
Status: NEW
Alias: None
Product: clang
Classification: Unclassified
Component: C++ (show other bugs)
Version: 3.5
Hardware: PC All
: P normal
Assignee: Unassigned Clang Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-23 06:09 PST by Vladimir Sedach
Modified: 2018-10-25 20:12 PDT (History)
5 users (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Sedach 2014-12-23 06:09:55 PST
Inline asm constraint "Yz" is not implemented.
There's a workaround:
register __m256i a1 asm("ymm0") = a;

It adds incompatibility with GC and IC.