From 3d8cd9ec10bd394a4b6d7c8f57a5b37e2d46634d Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 24 Sep 2008 00:50:16 +0000 Subject: [PATCH] Test fp not. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56534 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC/fp-logical.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/FrontendC/fp-logical.c b/test/FrontendC/fp-logical.c index 518db651179..60404f67022 100644 --- a/test/FrontendC/fp-logical.c +++ b/test/FrontendC/fp-logical.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -S -o - | grep bitcast | count 5 +// RUN: %llvmgcc %s -S -o - | grep bitcast | count 14 typedef float vFloat __attribute__ ((__vector_size__ (16))); typedef unsigned int vUInt32 __attribute__ ((__vector_size__ (16))); @@ -7,3 +7,9 @@ void foo(vFloat *X) { vFloat ExtremeValue = *X & NoSignBit; *X = ExtremeValue; } + +void bar(vFloat *X) { + vFloat NoSignBit = (vFloat) ~ (vUInt32) (vFloat) { -0.f, -0.f, -0.f, -0.f }; + vFloat ExtremeValue = *X & ~NoSignBit; + *X = ExtremeValue; +} -- 2.34.1