diff options
| author | 2014-02-23 23:43:26 -0800 | |
|---|---|---|
| committer | 2014-04-02 03:02:48 +0000 | |
| commit | dd46c864c12f592896e4da14758accbcd54afd10 (patch) | |
| tree | d966ca1c9a5a66a43e01d696d39a655339bf9b90 | |
| parent | 3ebb877e52a2661de56c3f44827f33824e735730 (diff) | |
opengl: fix UAL conformity
GAS assumes .align 2 if .align only is set, however the UAL doesn't enforce this assumption.
Change-Id: I88b567dc84ee8f04a13f2b8e80c3ee41530a9e49
| -rw-r--r-- | opengl/libagl/fixed_asm.S | 2 | ||||
| -rw-r--r-- | opengl/libagl/iterators.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libagl/fixed_asm.S b/opengl/libagl/fixed_asm.S index 05044f2cd0..5e08856d0a 100644 --- a/opengl/libagl/fixed_asm.S +++ b/opengl/libagl/fixed_asm.S @@ -17,7 +17,7 @@ .text - .align + .align 2 .global gglFloatToFixed .type gglFloatToFixed, %function diff --git a/opengl/libagl/iterators.S b/opengl/libagl/iterators.S index 8c8648212f..8fe9039088 100644 --- a/opengl/libagl/iterators.S +++ b/opengl/libagl/iterators.S @@ -17,7 +17,7 @@ .text - .align + .align 2 .arm .global iterators0032 |