summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-01-05 21:42:23 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-01-05 21:42:23 +0000
commitb469546a3bab426eec05fd21dd90a81cf75942da (patch)
tree7fc35a7dc5b3e950d1f91d06b23d348b288af8ec /examples
parent074a2cf3c51229b90b77e998463530c9b06470e6 (diff)
Fix -plugin command line argument syntax for clang -cc1 change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/PrintFunctionNames/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/PrintFunctionNames/README.txt b/examples/PrintFunctionNames/README.txt
index ee6f7e865e..267865c903 100644
--- a/examples/PrintFunctionNames/README.txt
+++ b/examples/PrintFunctionNames/README.txt
@@ -6,5 +6,5 @@ TOOL_NO_EXPORT in the tools/clang Makefile).
Once the plugin is built, you can run it using:
--
-$ clang -cc1 -load path/to/PrintFunctionNames.so -plugin=print-fns some-input-file.c
+$ clang -cc1 -load path/to/PrintFunctionNames.so -plugin print-fns some-input-file.c
--