Changeset 3072

Show
Ignore:
Timestamp:
11/12/08 13:41:15 (2 months ago)
Author:
sonarnerd
Message:

Make constants static const

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jack/libjack/simd.c

    r3053 r3072  
    333333{ 
    334334        int i; 
    335         float max[4] __attribute__((aligned(16))) = 
     335        static const float max[4] __attribute__((aligned(16))) = 
    336336                { -1.0F, -1.0F, -1.0F, -1.0F }; 
    337         float min[4] __attribute__((aligned(16))) = 
     337        static const float min[4] __attribute__((aligned(16))) = 
    338338                { 1.0F, 1.0F, 1.0F, 1.0F }; 
    339339        float s[4] __attribute__((aligned(16)));