summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/attr-no-sanitize-memory.cpp
diff options
context:
space:
mode:
authorDimitry Andric <dimitry@andric.com>2016-01-03 15:55:40 +0000
committerDimitry Andric <dimitry@andric.com>2016-01-03 15:55:40 +0000
commit3b05ba397b4c3f8f75071e83a03ed8ab49660fcb (patch)
tree3250fff72d9735b104384ce25cf08fab95cd23d2 /test/SemaCXX/attr-no-sanitize-memory.cpp
parent93d12f762adfed45408403abf5f2cb23826516c1 (diff)
Fix several accidental DOS line endings in source files
Summary: There are a number of files in the tree which have been accidentally checked in with DOS line endings. Convert these to native line endings. There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those. Reviewers: joerg, aaron.ballman Subscribers: aaron.ballman, cfe-commits Differential Revision: http://reviews.llvm.org/D15849 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/attr-no-sanitize-memory.cpp')
-rw-r--r--test/SemaCXX/attr-no-sanitize-memory.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/SemaCXX/attr-no-sanitize-memory.cpp b/test/SemaCXX/attr-no-sanitize-memory.cpp
index 8a8d847562..41809a00f0 100644
--- a/test/SemaCXX/attr-no-sanitize-memory.cpp
+++ b/test/SemaCXX/attr-no-sanitize-memory.cpp
@@ -5,14 +5,14 @@
#if !__has_attribute(no_sanitize_memory)
#error "Should support no_sanitize_memory"
#endif
-
-void noanal_fun() NO_SANITIZE_MEMORY;
-
-void noanal_fun_alt() __attribute__((__no_sanitize_memory__));
-
-void noanal_fun_args() __attribute__((no_sanitize_memory(1))); // \
- // expected-error {{'no_sanitize_memory' attribute takes no arguments}}
-
+
+void noanal_fun() NO_SANITIZE_MEMORY;
+
+void noanal_fun_alt() __attribute__((__no_sanitize_memory__));
+
+void noanal_fun_args() __attribute__((no_sanitize_memory(1))); // \
+ // expected-error {{'no_sanitize_memory' attribute takes no arguments}}
+
int noanal_testfn(int y) NO_SANITIZE_MEMORY;
int noanal_testfn(int y) {