From 5a93d1b0951dc5eeaea0593a84e07a4b2c21385e Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Sun, 13 Feb 2005 03:41:10 +0000 Subject: [PATCH] non-ieee arith crashes passes on alpha llvm-svn: 20144 --- Makefile.rules | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.rules b/Makefile.rules index 5e3158266f2..724554272a9 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -228,6 +228,12 @@ LD.Flags += $(LDFLAGS) AR.Flags := cru LibTool.Flags := --tag=CXX +#Make Floating point ieee complient on alpha +ifeq ($(ARCH),Alpha) + CXX.Flags += -mieee + CPP.Flags += -mieee +endif + #-------------------------------------------------------------------- # Directory locations #--------------------------------------------------------------------