Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / pr26099.c
blob15b73b832e9d813a4e64cd7e924a21fcc928d9c3
1 // RUN: %clang_cc1 -ffreestanding %s -triple=i686-apple-darwin -target-feature +mmx -emit-llvm -o - -Wall -Werror
2 // RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +mmx -emit-llvm -o - -Wall -Werror
3 // REQUIRES: asserts
5 #include <x86intrin.h>
7 int __attribute__ ((__vector_size__ (8))) b;
9 void bar(int a)
11 b = __builtin_ia32_vec_init_v2si (0, a);