[dragonegg] r182707 - Force SSE on so that the vectorizer will do something on 32 bit platforms.
Duncan Sands
baldrick at free.fr
Fri May 24 20:34:54 PDT 2013
Author: baldrick
Date: Fri May 24 22:34:54 2013
New Revision: 182707
URL: http://llvm.org/viewvc/llvm-project?rev=182707&view=rev
Log:
Force SSE on so that the vectorizer will do something on 32 bit platforms.
This will hopefully fix the 32 bit dragonegg buildbots.
Modified:
dragonegg/trunk/test/validator/c/vectorizer.c
Modified: dragonegg/trunk/test/validator/c/vectorizer.c
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/validator/c/vectorizer.c?rev=182707&r1=182706&r2=182707&view=diff
==============================================================================
--- dragonegg/trunk/test/validator/c/vectorizer.c (original)
+++ dragonegg/trunk/test/validator/c/vectorizer.c Fri May 24 22:34:54 2013
@@ -1,5 +1,5 @@
-// RUN: %dragonegg -S %s -o - -O3 | FileCheck -check-prefix=VON %s
-// RUN: %dragonegg -S %s -o - -O3 -fno-tree-vectorize | FileCheck -check-prefix=VOFF %s
+// RUN: %dragonegg -S %s -o - -O3 -msse | FileCheck -check-prefix=VON %s
+// RUN: %dragonegg -S %s -o - -O3 -msse -fno-tree-vectorize | FileCheck -check-prefix=VOFF %s
// VON: fadd <
// VOFF-NOT: fadd <
More information about the llvm-commits
mailing list