diff options
author | Eric Christopher <echristo@gmail.com> | 2015-07-01 01:07:12 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-07-01 01:07:12 +0000 |
commit | 2374a7cba8ea820f27c05e3f7f8f7f98d27c650d (patch) | |
tree | e29178bbf47f00abe7ccc928ae26d7341b0731a7 /clang/test/CodeGen/function-target-features.c | |
parent | bdff219439efcdb157962498e5eeaecb77ed65a7 (diff) | |
download | bcm5719-llvm-2374a7cba8ea820f27c05e3f7f8f7f98d27c650d.tar.gz bcm5719-llvm-2374a7cba8ea820f27c05e3f7f8f7f98d27c650d.zip |
Use a stable sort to guarantee target feature ordering in the IR
in order to make testing somewhat more feasible. Has the advantage
of making it easier to find target features as well.
llvm-svn: 241134
Diffstat (limited to 'clang/test/CodeGen/function-target-features.c')
-rw-r--r-- | clang/test/CodeGen/function-target-features.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/function-target-features.c b/clang/test/CodeGen/function-target-features.c index 133e89cbbe3..351c7f102b1 100644 --- a/clang/test/CodeGen/function-target-features.c +++ b/clang/test/CodeGen/function-target-features.c @@ -17,7 +17,7 @@ void foo() {} // AVX-FEATURE: "target-features"{{.*}}+avx // AVX-NO-CPU-NOT: target-cpu -// TWO-AVX: "target-features"={{.*}}+avx512f{{.*}}+avx512er +// TWO-AVX: "target-features"={{.*}}+avx512er{{.*}}+avx512f // CORE-CPU: "target-cpu"="corei7" // CORE-CPU-AND-FEATURES: "target-cpu"="corei7" "target-features"={{.*}}+avx // X86-64-CPU: "target-cpu"="x86-64" |