Support/PathV2: Fix 80 col.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Mon, 29 Nov 2010 23:35:49 +0000 (23:35 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Mon, 29 Nov 2010 23:35:49 +0000 (23:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120349 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/Path.cpp

index 8be45de76b5b03be987fb5616d02a9a8955ec2e6..2c7c3cba9e60e3c6de71fc1aae0cd869744ee6d3 100644 (file)
@@ -73,15 +73,19 @@ TEST(Support, Path) {
 
     StringRef res;
     SmallString<16> temp_store;
-    if (error_code ec = sys::path::root_path(*i, res)) ASSERT_FALSE(ec.message().c_str());
+    if (error_code ec = sys::path::root_path(*i, res))
+      ASSERT_FALSE(ec.message().c_str());
     outs() << "    root_path: " << res << '\n';
-    if (error_code ec = sys::path::root_name(*i, res)) ASSERT_FALSE(ec.message().c_str());
+    if (error_code ec = sys::path::root_name(*i, res))
+      ASSERT_FALSE(ec.message().c_str());
     outs() << "    root_name: " << res << '\n';
-    if (error_code ec = sys::path::root_directory(*i, res)) ASSERT_FALSE(ec.message().c_str());
+    if (error_code ec = sys::path::root_directory(*i, res))
+      ASSERT_FALSE(ec.message().c_str());
     outs() << "    root_directory: " << res << '\n';
 
     temp_store = *i;
-    if (error_code ec = sys::path::make_absolute(temp_store)) ASSERT_FALSE(ec.message().c_str());
+    if (error_code ec = sys::path::make_absolute(temp_store))
+      ASSERT_FALSE(ec.message().c_str());
     outs() << "    make_absolute: " << temp_store << '\n';
 
     outs().flush();