https://bugs.llvm.org/show_bug.cgi?id=51480

Reid Kleckner <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #1 from Reid Kleckner <[email protected]> ---
MSVC has a different model for intrinsics: they can always be called regardless
of the /arch: setting. Clang requires you to enable the relevant features.
There are no plans to implement the MSVC intrinsic model. LLVM subtarget
features are set at the function level. You can control them either with
__attribute__((target)) or the various -m* flags. There is no /arch: flag for
SSSE3, so your workaround is a proper solution.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to