Skip to content

Commit

Permalink
Add some missing functions to builtins.py.
Browse files Browse the repository at this point in the history
rdar://10112601

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161227 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
echristo committed Aug 3, 2012
1 parent 5b32a08 commit a5c12b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion www/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'__builtin_ia32_xorpd': '_mm_xor_pd',
'__builtin_ia32_xorps': '_mm_xor_ps',
'__builtin_ia32_pxor128': '_mm_xor_si128',
'__builtin_ia32_cvtps2dq': '_mm_cvtps_epi32',
'__builtin_ia32_cvtsd2ss': '_mm_cvtsd_ss',
'__builtin_ia32_cvtsi2sd': '_mm_cvtsi32_sd',
'__builtin_ia32_cvtss2sd': '_mm_cvtss_sd',
Expand Down Expand Up @@ -120,6 +121,8 @@
'__builtin_ia32_pshufd': '_mm_shuffle_epi32',
'__builtin_ia32_movshdup': '_mm_movehdup_ps',
'__builtin_ia32_movsldup': '_mm_moveldup_ps',
'__builtin_ia32_maxps': '_mm_max_ps',
'__builtin_ia32_pslldi128': '_mm_slli_epi32',
'__builtin_ia32_vec_set_v16qi': '_mm_insert_epi8',
'__builtin_ia32_vec_set_v8hi': '_mm_insert_epi16',
'__builtin_ia32_vec_set_v4si': '_mm_insert_epi32',
Expand Down Expand Up @@ -157,4 +160,4 @@ def report_cant(builtin):
report_cant(unh)
sys.stdout.write(line)

sys.exit(err)
sys.exit(err)

0 comments on commit a5c12b9

Please sign in to comment.