forked from OSchip/llvm-project
Testcase that was triggering an incorrect assertion failure
llvm-svn: 3180
This commit is contained in:
parent
5987171ef5
commit
f4ef97c59f
|
@ -0,0 +1,14 @@
|
|||
typedef struct
|
||||
{
|
||||
unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
|
||||
} InternalFPF;
|
||||
|
||||
|
||||
static void SetInternalFPFZero(InternalFPF *dest) {
|
||||
dest->type=0;
|
||||
}
|
||||
|
||||
void denormalize(InternalFPF *ptr) {
|
||||
SetInternalFPFZero(ptr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue