diff options
author | ed <ed@FreeBSD.org> | 2009-06-07 09:21:25 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-06-07 09:21:25 +0000 |
commit | 2ae812c77b393190175c91233c3348f526ddab1b (patch) | |
tree | 57fdd33d153490269ca615ac308de731d00669da /test/CodeGen/x86.c | |
parent | 265c92560db8af7e64dc328cb612076086a62bd1 (diff) | |
download | FreeBSD-src-2ae812c77b393190175c91233c3348f526ddab1b.zip FreeBSD-src-2ae812c77b393190175c91233c3348f526ddab1b.tar.gz |
Import Clang r73021.
Diffstat (limited to 'test/CodeGen/x86.c')
-rw-r--r-- | test/CodeGen/x86.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/CodeGen/x86.c b/test/CodeGen/x86.c index 10808dc..66d8251 100644 --- a/test/CodeGen/x86.c +++ b/test/CodeGen/x86.c @@ -13,11 +13,3 @@ void test1() { asm ("" : "=a" (d1), "=b" (d2) : "c" (0), "d" (0), "S" (0), "D" (0), "t" (0), "u" (0)); } - - -// rdar://6803924 -typedef double T __attribute__ ((__vector_size__ (16))); -T test2(T va) { - return __builtin_ia32_shufpd(va, va, 3); -} - |