diff options
author | Fangrui Song <i@maskray.me> | 2024-05-04 17:15:51 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2024-05-04 17:15:51 -0700 |
commit | 0d501f38f348cf046d40c9baee12f0c5145b6d8c (patch) | |
tree | 11b5c75dd51105ece70426eb3759697a1d6a1dce /clang/test/Misc | |
parent | c5de4dd1eab00df76c1a68c5f397304ceacb71f2 (diff) | |
download | llvm-0d501f38f348cf046d40c9baee12f0c5145b6d8c.zip llvm-0d501f38f348cf046d40c9baee12f0c5145b6d8c.tar.gz llvm-0d501f38f348cf046d40c9baee12f0c5145b6d8c.tar.bz2 |
[test] %clang_cc1 -emit-llvm: remove redundant -S
Also replace aarch64-none-linux-gnu (none can indicate an OS as well) with aarch64
Diffstat (limited to 'clang/test/Misc')
-rw-r--r-- | clang/test/Misc/loop-opt-setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Misc/loop-opt-setup.c b/clang/test/Misc/loop-opt-setup.c index 2ef9f25..01643e6 100644 --- a/clang/test/Misc/loop-opt-setup.c +++ b/clang/test/Misc/loop-opt-setup.c @@ -1,6 +1,6 @@ // This tests loop unrolling and loop deletion (enabled under -O1) -// RUN: %clang_cc1 -std=c11 -O1 -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s -// RUN: %clang_cc1 -std=c99 -O1 -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s --check-prefix C99 +// RUN: %clang_cc1 -std=c11 -O1 -fno-unroll-loops -o - %s -emit-llvm | FileCheck %s +// RUN: %clang_cc1 -std=c99 -O1 -fno-unroll-loops -o - %s -emit-llvm | FileCheck %s --check-prefix C99 extern int a[16]; int b = 0; |