From 3276416fa4bf1b567dc02588f76ef07bf8bdbbc4 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 22 Sep 2008 22:19:34 +0000 Subject: Test case for fp logical instructions. llvm-svn: 56474 --- llvm/test/FrontendC/fp-logical.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 llvm/test/FrontendC/fp-logical.c (limited to 'llvm/test/FrontendC') diff --git a/llvm/test/FrontendC/fp-logical.c b/llvm/test/FrontendC/fp-logical.c new file mode 100644 index 00000000000..518db651179 --- /dev/null +++ b/llvm/test/FrontendC/fp-logical.c @@ -0,0 +1,9 @@ +// RUN: %llvmgcc %s -S -o - | grep bitcast | count 5 + +typedef float vFloat __attribute__ ((__vector_size__ (16))); +typedef unsigned int vUInt32 __attribute__ ((__vector_size__ (16))); +void foo(vFloat *X) { + vFloat NoSignBit = (vFloat) ~ (vUInt32) (vFloat) { -0.f, -0.f, -0.f, -0.f }; + vFloat ExtremeValue = *X & NoSignBit; + *X = ExtremeValue; +} -- cgit v1.2.3