Fix several accidental DOS line endings in source files
[oota-llvm.git] / unittests / IR / TypesTest.cpp
index b4dbf8ec2c73f108ac396a3f48fc38acce952022..f006db51de56746f650dfe7925632879d96a4724 100644 (file)
@@ -27,12 +27,12 @@ TEST(TypesTest, StructType) {
   EXPECT_FALSE(Struct->hasName());
 }
 
-TEST(TypesTest, LayoutIdenticalEmptyStructs) {\r
-  LLVMContext C;\r
-\r
-  StructType *Foo = StructType::create(C, "Foo");\r
-  StructType *Bar = StructType::create(C, "Bar");\r
-  EXPECT_TRUE(Foo->isLayoutIdentical(Bar));\r
-}\r
+TEST(TypesTest, LayoutIdenticalEmptyStructs) {
+  LLVMContext C;
+
+  StructType *Foo = StructType::create(C, "Foo");
+  StructType *Bar = StructType::create(C, "Bar");
+  EXPECT_TRUE(Foo->isLayoutIdentical(Bar));
+}
 
 }  // end anonymous namespace