diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-09-01 11:24:45 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-04 22:15:53 +0200 |
commit | d72871e1387094972569e4b77c25e88020f7b68f (patch) | |
tree | 581e8cb21ebbf1f9ba84f04bfaac5bee27282910 /cpu/arm1176/s3c64xx | |
parent | d6281ff0cc2ebb5d6a5c3e1021837334074f92ec (diff) | |
download | u-boot-imx-d72871e1387094972569e4b77c25e88020f7b68f.zip u-boot-imx-d72871e1387094972569e4b77c25e88020f7b68f.tar.gz u-boot-imx-d72871e1387094972569e4b77c25e88020f7b68f.tar.bz2 |
arm: Remove -fno-strict-aliasing
-fno-strict-aliasing is hidding warnings.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/arm1176/s3c64xx')
-rw-r--r-- | cpu/arm1176/s3c64xx/config.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpu/arm1176/s3c64xx/config.mk b/cpu/arm1176/s3c64xx/config.mk index a31c7b0..14346cf 100644 --- a/cpu/arm1176/s3c64xx/config.mk +++ b/cpu/arm1176/s3c64xx/config.mk @@ -20,8 +20,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA # -PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -ffixed-r8 \ - -msoft-float +PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float # Make ARMv5 to allow more compilers to work, even though its v6. PLATFORM_CPPFLAGS += -march=armv5t |