mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Test fp not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1e48000966
commit
3d8cd9ec10
@ -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 float vFloat __attribute__ ((__vector_size__ (16)));
|
||||||
typedef unsigned int vUInt32 __attribute__ ((__vector_size__ (16)));
|
typedef unsigned int vUInt32 __attribute__ ((__vector_size__ (16)));
|
||||||
@ -7,3 +7,9 @@ void foo(vFloat *X) {
|
|||||||
vFloat ExtremeValue = *X & NoSignBit;
|
vFloat ExtremeValue = *X & NoSignBit;
|
||||||
*X = ExtremeValue;
|
*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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user