Changeset 964 for trunk/test
- Timestamp:
- Sep 20, 2011, 2:03:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/benchmark/trig.cpp
r942 r964 64 64 timer.GetMs(); 65 65 for (size_t i = 0; i < TRIG_TABLE_SIZE; i++) 66 #if defined __GNUC__ 66 #if defined __GNUC__ && !defined __SNC__ 67 67 pf2[i] = __builtin_sinf(pf[i]); 68 68 #else … … 90 90 timer.GetMs(); 91 91 for (size_t i = 0; i < TRIG_TABLE_SIZE; i++) 92 #if defined __GNUC__ 92 #if defined __GNUC__ && !defined __SNC__ 93 93 pf2[i] = __builtin_cosf(pf[i]); 94 94 #else … … 117 117 for (size_t i = 0; i < TRIG_TABLE_SIZE; i++) 118 118 { 119 #if defined __GNUC__ 119 #if defined __GNUC__ && !defined __SNC__ 120 120 pf2[i] = __builtin_sinf(pf[i]); 121 121 pf3[i] = __builtin_cosf(pf[i]); … … 150 150 timer.GetMs(); 151 151 for (size_t i = 0; i < TRIG_TABLE_SIZE; i++) 152 #if defined __GNUC__ 152 #if defined __GNUC__ && !defined __SNC__ 153 153 pf2[i] = __builtin_tanf(pf[i]); 154 154 #else
Note: See TracChangeset
for help on using the changeset viewer.