Prune CRLF.

llvm-svn: 220678
diff --git a/dragonegg/test/validator/c/NoIROptimize.c b/dragonegg/test/validator/c/NoIROptimize.c
index 57f0f8a..1f49601 100644
--- a/dragonegg/test/validator/c/NoIROptimize.c
+++ b/dragonegg/test/validator/c/NoIROptimize.c
@@ -1,7 +1,7 @@
-// RUN: %dragonegg -S -O3 -fplugin-arg-dragonegg-llvm-ir-optimize=0 -fplugin-arg-dragonegg-debug-pass-arguments %s 2>&1 | FileCheck %s

-

-// CHECK-NOT: inline

-

-inline __attribute__ ((__always_inline__)) void foo(void) {}

-void bar(void) { foo(); }

-void qaz(void) { bar(); }

+// RUN: %dragonegg -S -O3 -fplugin-arg-dragonegg-llvm-ir-optimize=0 -fplugin-arg-dragonegg-debug-pass-arguments %s 2>&1 | FileCheck %s
+
+// CHECK-NOT: inline
+
+inline __attribute__ ((__always_inline__)) void foo(void) {}
+void bar(void) { foo(); }
+void qaz(void) { bar(); }
diff --git a/dragonegg/test/validator/c/fma.c b/dragonegg/test/validator/c/fma.c
index 5400009..d17468f 100644
--- a/dragonegg/test/validator/c/fma.c
+++ b/dragonegg/test/validator/c/fma.c
@@ -1,10 +1,10 @@
-// RUN: %dragonegg -mfma4 -S %s -o - | FileCheck %s

-// XFAIL: gcc-4.5, i386, i486, i586, i686

-

-// CHECK: @fmaftest

-// CHECK: call float @llvm.fma.f32

-float fmaftest(float a, float b, float c) { return __builtin_fmaf(a, b, c); }

-

-// CHECK: @fmatest

-// CHECK: call double @llvm.fma.f64

-double fmatest(double a, double b, double c) { return __builtin_fma(a, b, c); }

+// RUN: %dragonegg -mfma4 -S %s -o - | FileCheck %s
+// XFAIL: gcc-4.5, i386, i486, i586, i686
+
+// CHECK: @fmaftest
+// CHECK: call float @llvm.fma.f32
+float fmaftest(float a, float b, float c) { return __builtin_fmaf(a, b, c); }
+
+// CHECK: @fmatest
+// CHECK: call double @llvm.fma.f64
+double fmatest(double a, double b, double c) { return __builtin_fma(a, b, c); }
diff --git a/dragonegg/test/validator/c/iceil.c b/dragonegg/test/validator/c/iceil.c
index 6e348ed..efbc328 100644
--- a/dragonegg/test/validator/c/iceil.c
+++ b/dragonegg/test/validator/c/iceil.c
@@ -1,14 +1,14 @@
-// RUN: %dragonegg -S %s -o - -O2 -lm -ffast-math | FileCheck %s

-// PR14270

-

-// CHECK-NOT: builtin

-

-#include <math.h>

-

-int iceilf (float a) { return (int) ceil (a); }

-int iceil (double a) { return (int) ceil (a); }

-int iceill (long double a) { return (int) ceil (a); }

-

-int ifloorf (float a) { return (int) floor (a); }

-int ifloor (double a) { return (int) floor (a); }

-int ifloorl (long double a) { return (int) floor (a); }

+// RUN: %dragonegg -S %s -o - -O2 -lm -ffast-math | FileCheck %s
+// PR14270
+
+// CHECK-NOT: builtin
+
+#include <math.h>
+
+int iceilf (float a) { return (int) ceil (a); }
+int iceil (double a) { return (int) ceil (a); }
+int iceill (long double a) { return (int) ceil (a); }
+
+int ifloorf (float a) { return (int) floor (a); }
+int ifloor (double a) { return (int) floor (a); }
+int ifloorl (long double a) { return (int) floor (a); }