forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
999ad15
commit e229b4c
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifdef __GNUC__ | ||
|
||
typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__)); | ||
|
||
__m128 setzero(void) | ||
{ | ||
return (__m128){ 0.0f, 0.0f, 0.0f, 0.0f }; | ||
} | ||
|
||
#else | ||
|
||
void setzero() | ||
{ | ||
} | ||
|
||
#endif | ||
|
||
int main(int argc, char* argv[]) | ||
{ | ||
setzero(); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CORE | ||
main.cpp | ||
|
||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
-- | ||
^CONVERSION ERROR$ | ||
^warning: ignoring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters