diff options
author | Fangrui Song <maskray@google.com> | 2018-03-01 01:05:04 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-03-01 01:05:04 +0000 |
commit | 3816c78490d7bfb51db355acca9b50724c731ce2 (patch) | |
tree | 2aaf48ff4a2841cfd6438dc3edaa490393f7091c | |
parent | f50299fb87dfff4e45c4c02d655ed6141c98cec2 (diff) | |
download | bcm5719-llvm-3816c78490d7bfb51db355acca9b50724c731ce2.tar.gz bcm5719-llvm-3816c78490d7bfb51db355acca9b50724c731ce2.zip |
[ELF] Fix a test comment. NFC
llvm-svn: 326400
-rw-r--r-- | lld/test/ELF/as-needed.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/as-needed.s b/lld/test/ELF/as-needed.s index bcfa32d01f6..a7bba79d57b 100644 --- a/lld/test/ELF/as-needed.s +++ b/lld/test/ELF/as-needed.s @@ -22,7 +22,7 @@ // RUN: ld.lld --as-needed %t.o %t2.so --no-as-needed %t3.so %t4.so -o %t2 // RUN: llvm-readobj -dynamic-table %t2 | FileCheck %s -/// GROUP directive is the same as --as-needed. +/// GROUP command is the same as listing the files on the command line. // RUN: echo "GROUP(\"%t2.so\" \"%t3.so\" \"%t4.so\")" > %t.script // RUN: ld.lld %t.o %t.script -o %t2 |