diff options
author | Craig Topper <craig.topper@gmail.com> | 2015-10-16 06:22:36 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2015-10-16 06:22:36 +0000 |
commit | e33f51fa915bdf8d057c72190339c8cd5def7a16 (patch) | |
tree | dbddfadc222d104e6b22aad86f6d5ce5fd53b689 /clang/test/CodeGen/builtins-x86.c | |
parent | 09b659857232912bdbf70a14efd7d4ab5b1f9da8 (diff) | |
download | bcm5719-llvm-e33f51fa915bdf8d057c72190339c8cd5def7a16.tar.gz bcm5719-llvm-e33f51fa915bdf8d057c72190339c8cd5def7a16.zip |
[X86] Add fxsr feature name for fxsave/fxrestore builtins.
llvm-svn: 250498
Diffstat (limited to 'clang/test/CodeGen/builtins-x86.c')
-rw-r--r-- | clang/test/CodeGen/builtins-x86.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/builtins-x86.c b/clang/test/CodeGen/builtins-x86.c index d4fcae0478b..0721ccb9ff3 100644 --- a/clang/test/CodeGen/builtins-x86.c +++ b/clang/test/CodeGen/builtins-x86.c @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -DUSE_64 -triple x86_64-unknown-unknown -target-feature +avx -target-feature +xsaveopt -target-feature +xsaves -target-feature +xsavec -emit-llvm -o %t %s -// RUN: %clang_cc1 -DUSE_ALL -triple x86_64-unknown-unknown -target-feature +avx -target-feature +xsaveopt -target-feature +xsaves -target-feature +xsavec -fsyntax-only -o %t %s +// RUN: %clang_cc1 -DUSE_64 -triple x86_64-unknown-unknown -target-feature +fxsr -target-feature +avx -target-feature +xsaveopt -target-feature +xsaves -target-feature +xsavec -emit-llvm -o %t %s +// RUN: %clang_cc1 -DUSE_ALL -triple x86_64-unknown-unknown -target-feature +fxsr -target-feature +avx -target-feature +xsaveopt -target-feature +xsaves -target-feature +xsavec -fsyntax-only -o %t %s #ifdef USE_ALL #define USE_3DNOW |