Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef V8_SSE_INSTR_H_ | |
| 6 #define V8_SSE_INSTR_H_ | |
| 7 | |
| 8 #define SSE2_INSTRUCTION_LIST(V) \ | |
| 9 V(paddd, 66, 0F, FE) \ | |
| 10 V(psubd, 66, 0F, FA) | |
| 11 | |
| 12 #endif // V8_SSE_INSTR_H_ | |
| OLD | NEW |