diff options
author | Steve Naroff <snaroff@apple.com> | 2008-03-26 22:28:40 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-03-26 22:28:40 +0000 |
commit | c10c2e339f67df91397d57abbd3fef63b6b02791 (patch) | |
tree | 9bcdcdaf2fed481273427d3e6a24b3acd3275d74 /clang/test/Rewriter/method-encoding-1.m | |
parent | ea128437b3dc2e969b3622da40838ed75098d3fc (diff) | |
download | bcm5719-llvm-c10c2e339f67df91397d57abbd3fef63b6b02791.tar.gz bcm5719-llvm-c10c2e339f67df91397d57abbd3fef63b6b02791.zip |
Fix rewriter tests to work with new output file logic. This changes forces the output to standard out (rather than generate a .cpp file, which is the new default for the rewriter).
llvm-svn: 48847
Diffstat (limited to 'clang/test/Rewriter/method-encoding-1.m')
-rw-r--r-- | clang/test/Rewriter/method-encoding-1.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Rewriter/method-encoding-1.m b/clang/test/Rewriter/method-encoding-1.m index 96d1bfafc7c..99f9f1f7817 100644 --- a/clang/test/Rewriter/method-encoding-1.m +++ b/clang/test/Rewriter/method-encoding-1.m @@ -1,4 +1,4 @@ -// RUN: clang -rewrite-test %s +// RUN: clang -rewrite-test %s -o=- @protocol P1 - (void) MyProtoMeth : (int **) arg1 : (void*) arg2; |