diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-05-30 18:18:29 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-05-30 18:18:29 +0000 |
commit | b4a542549c2e0c9eeb6ece3f95767ccdd141fa3e (patch) | |
tree | 2da9aa30ad46821014d57500339a5124007eeadd | |
parent | 59a9881ab252c80735d6440bd9ca0fbac252e6a8 (diff) |
TableGen: Remove extraneous '\' at EOL in generated tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157700 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/NeonEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 658890cb1e..385deb8a1c 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -1507,7 +1507,7 @@ static std::string GenTest(const std::string &name, s.push_back(arg); comma = ", "; } - s += ") { \\\n "; + s += ") {\n "; if (proto[0] != 'v') s += "return "; |