summaryrefslogtreecommitdiffstats
path: root/NOTES.txt
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-12-12 00:56:47 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-12-12 00:56:47 +0000
commit864db01dec1671d012a4d12c7c4edf8766ffacda (patch)
tree1021de14f40456655f066a130eecb966485c362c /NOTES.txt
parent5099b80088141137d81c62d3e03208835faced06 (diff)
Remove clang-cc tool, it has joined in unholy union with clang.
- tools/driver will be renamed to tools/clang at some point. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91195 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'NOTES.txt')
-rw-r--r--NOTES.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/NOTES.txt b/NOTES.txt
index dc7a9bc0e7..beceb7d1cc 100644
--- a/NOTES.txt
+++ b/NOTES.txt
@@ -17,7 +17,7 @@ Creating and using a PTH file for performance measurement (use a release-asserts
build).
$ clang -ccc-pch-is-pth -x objective-c-header INPUTS/Cocoa_h.m -o /tmp/tokencache
-$ clang-cc -token-cache /tmp/tokencache INPUTS/Cocoa_h.m
+$ clang -cc1 -token-cache /tmp/tokencache INPUTS/Cocoa_h.m
//===---------------------------------------------------------------------===//