diff options
author | Jeffrey Walton <noloader@gmail.com> | 2018-11-13 13:48:38 -0500 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2018-11-13 13:48:38 -0500 |
commit | 926e91008b289f10ac2f8d5868e1cfa1420544ae (patch) | |
tree | a8aeb1c8df6ef5967d7fae385ab7e3297648b393 /TestPrograms/test_ppc_power8.cxx | |
parent | 69a00192b9591439154db887cbdc8bbac6af0ea0 (diff) | |
download | cryptopp-git-926e91008b289f10ac2f8d5868e1cfa1420544ae.tar.gz |
Use Windows EOL conventions
Diffstat (limited to 'TestPrograms/test_ppc_power8.cxx')
-rw-r--r-- | TestPrograms/test_ppc_power8.cxx | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/TestPrograms/test_ppc_power8.cxx b/TestPrograms/test_ppc_power8.cxx index 09412912..74ae561e 100644 --- a/TestPrograms/test_ppc_power8.cxx +++ b/TestPrograms/test_ppc_power8.cxx @@ -1,19 +1,19 @@ -#include <altivec.h> -int main(int argc, char* argv[]) -{ - __vector unsigned long long z; -#if defined(__xlc__) || defined(__xlC__) || defined(__clang__) - __vector unsigned char x; - x=__vcipher(x,x); - x=__vcipherlast(x,x); - x=__vncipher(x,x); - x=__vncipherlast(x,x); -#elif defined(__GNUC__) - __vector unsigned long long x; - x=__builtin_crypto_vcipher(x,x); - x=__builtin_crypto_vcipherlast(x,x); - x=__builtin_crypto_vncipher(x,x); - x=__builtin_crypto_vncipherlast(x,x); -#endif - return 0; -} +#include <altivec.h>
+int main(int argc, char* argv[])
+{
+ __vector unsigned long long z;
+#if defined(__xlc__) || defined(__xlC__) || defined(__clang__)
+ __vector unsigned char x;
+ x=__vcipher(x,x);
+ x=__vcipherlast(x,x);
+ x=__vncipher(x,x);
+ x=__vncipherlast(x,x);
+#elif defined(__GNUC__)
+ __vector unsigned long long x;
+ x=__builtin_crypto_vcipher(x,x);
+ x=__builtin_crypto_vcipherlast(x,x);
+ x=__builtin_crypto_vncipher(x,x);
+ x=__builtin_crypto_vncipherlast(x,x);
+#endif
+ return 0;
+}
|