diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-02 00:29:52 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-02 00:29:52 +0000 |
commit | fff0ff83134dacb84ae8773a8b3cc2c2f3add0a4 (patch) | |
tree | 8f52734d651b2a00eb2ee255037f522270f7a159 /tools/llvm-stub/llvm-stub.c | |
parent | 0ebee7410f2b826d624fa81acb8c2e4e09c491ab (diff) |
Fix a double negation (in grammar).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13943 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-stub/llvm-stub.c')
-rw-r--r-- | tools/llvm-stub/llvm-stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-stub/llvm-stub.c b/tools/llvm-stub/llvm-stub.c index 931f98a3d5..a64c5df9f4 100644 --- a/tools/llvm-stub/llvm-stub.c +++ b/tools/llvm-stub/llvm-stub.c @@ -15,7 +15,7 @@ // // This allows the end user to just say ./<program> and have the JIT executed // automatically. On unix, the stub executable emitted is actually a bourne -// shell script that does the forwarding. Windows doesn't not like #!/bin/sh +// shell script that does the forwarding. Windows does not like #!/bin/sh // programs in .exe files, so we make it an actual program, defined here. // //===----------------------------------------------------------------------===*/ |