Home | History | Annotate | Download | only in Preprocessor

Lines Matching full:ppc64

530 // RUN: %clang_cc1 -E -ffreestanding -triple=powerpc64-none-none %s | FileCheck -check-prefix PPC64 %s
532 // PPC64:typedef long int int64_t;
533 // PPC64:typedef long unsigned int uint64_t;
534 // PPC64:typedef int64_t int_least64_t;
535 // PPC64:typedef uint64_t uint_least64_t;
536 // PPC64:typedef int64_t int_fast64_t;
537 // PPC64:typedef uint64_t uint_fast64_t;
539 // PPC64:typedef int int32_t;
540 // PPC64:typedef unsigned int uint32_t;
541 // PPC64:typedef int32_t int_least32_t;
542 // PPC64:typedef uint32_t uint_least32_t;
543 // PPC64:typedef int32_t int_fast32_t;
544 // PPC64:typedef uint32_t uint_fast32_t;
546 // PPC64:typedef short int16_t;
547 // PPC64:typedef unsigned short uint16_t;
548 // PPC64:typedef int16_t int_least16_t;
549 // PPC64:typedef uint16_t uint_least16_t;
550 // PPC64:typedef int16_t int_fast16_t;
551 // PPC64:typedef uint16_t uint_fast16_t;
553 // PPC64:typedef signed char int8_t;
554 // PPC64:typedef unsigned char uint8_t;
555 // PPC64:typedef int8_t int_least8_t;
556 // PPC64:typedef uint8_t uint_least8_t;
557 // PPC64:typedef int8_t int_fast8_t;
558 // PPC64:typedef uint8_t uint_fast8_t;
560 // PPC64:typedef int64_t intptr_t;
561 // PPC64:typedef uint64_t uintptr_t;
563 // PPC64:typedef long int intmax_t;
564 // PPC64:typedef long unsigned int uintmax_t;
566 // PPC64:INT8_MAX_ 127
567 // PPC64:INT8_MIN_ (-127 -1)
568 // PPC64:UINT8_MAX_ 255
569 // PPC64:INT_LEAST8_MIN_ (-127 -1)
570 // PPC64:INT_LEAST8_MAX_ 127
571 // PPC64:UINT_LEAST8_MAX_ 255
572 // PPC64:INT_FAST8_MIN_ (-127 -1)
573 // PPC64:INT_FAST8_MAX_ 127
574 // PPC64:UINT_FAST8_MAX_ 255
576 // PPC64:INT16_MAX_ 32767
577 // PPC64:INT16_MIN_ (-32767 -1)
578 // PPC64:UINT16_MAX_ 65535
579 // PPC64:INT_LEAST16_MIN_ (-32767 -1)
580 // PPC64:INT_LEAST16_MAX_ 32767
581 // PPC64:UINT_LEAST16_MAX_ 65535
582 // PPC64:INT_FAST16_MIN_ (-32767 -1)
583 // PPC64:INT_FAST16_MAX_ 32767
584 // PPC64:UINT_FAST16_MAX_ 65535
586 // PPC64:INT32_MAX_ 2147483647
587 // PPC64:INT32_MIN_ (-2147483647 -1)
588 // PPC64:UINT32_MAX_ 4294967295U
589 // PPC64:INT_LEAST32_MIN_ (-2147483647 -1)
590 // PPC64:INT_LEAST32_MAX_ 2147483647
591 // PPC64:UINT_LEAST32_MAX_ 4294967295U
592 // PPC64:INT_FAST32_MIN_ (-2147483647 -1)
593 // PPC64:INT_FAST32_MAX_ 2147483647
594 // PPC64:UINT_FAST32_MAX_ 4294967295U
596 // PPC64:INT64_MAX_ 9223372036854775807L
597 // PPC64:INT64_MIN_ (-9223372036854775807L -1)
598 // PPC64:UINT64_MAX_ 18446744073709551615UL
599 // PPC64:INT_LEAST64_MIN_ (-9223372036854775807L -1)
600 // PPC64:INT_LEAST64_MAX_ 9223372036854775807L
601 // PPC64:UINT_LEAST64_MAX_ 18446744073709551615UL
602 // PPC64:INT_FAST64_MIN_ (-9223372036854775807L -1)
603 // PPC64:INT_FAST64_MAX_ 9223372036854775807L
604 // PPC64:UINT_FAST64_MAX_ 18446744073709551615UL
606 // PPC64:INTPTR_MIN_ (-9223372036854775807L -1)
607 // PPC64:INTPTR_MAX_ 9223372036854775807L
608 // PPC64:UINTPTR_MAX_ 18446744073709551615UL
609 // PPC64:PTRDIFF_MIN_ (-9223372036854775807L -1)
610 // PPC64:PTRDIFF_MAX_ 9223372036854775807L
611 // PPC64:SIZE_MAX_ 18446744073709551615UL
613 // PPC64:INTMAX_MIN_ (-9223372036854775807L -1)
614 // PPC64:INTMAX_MAX_ 9223372036854775807L
615 // PPC64:UINTMAX_MAX_ 18446744073709551615UL
617 // PPC64:SIG_ATOMIC_MIN_ (-2147483647 -1)
618 // PPC64:SIG_ATOMIC_MAX_ 2147483647
619 // PPC64:WINT_MIN_ (-2147483647 -1)
620 // PPC64:WINT_MAX_ 2147483647
622 // PPC64:WCHAR_MAX_ 2147483647
623 // PPC64:WCHAR_MIN_ (-2147483647 -1)
625 // PPC64:INT8_C_(0) 0
626 // PPC64:UINT8_C_(0) 0U
627 // PPC64:INT16_C_(0) 0
628 // PPC64:UINT16_C_(0) 0U
629 // PPC64:INT32_C_(0) 0
630 // PPC64:UINT32_C_(0) 0U
631 // PPC64:INT64_C_(0) 0L
632 // PPC64:UINT64_C_(0) 0UL
634 // PPC64:INTMAX_C_(0) 0L
635 // PPC64:UINTMAX_C_(0) 0UL
637 // RUN: %clang_cc1 -E -ffreestanding -triple=powerpc64-none-netbsd %s | FileCheck -check-prefix PPC64-NETBSD %s
639 // PPC64-NETBSD:typedef long long int int64_t;
640 // PPC64-NETBSD:typedef long long unsigned int uint64_t;
641 // PPC64-NETBSD:typedef int64_t int_least64_t;
642 // PPC64-NETBSD:typedef uint64_t uint_least64_t;
643 // PPC64-NETBSD:typedef int64_t int_fast64_t;
644 // PPC64-NETBSD:typedef uint64_t uint_fast64_t;
646 // PPC64-NETBSD:typedef int int32_t;
647 // PPC64-NETBSD:typedef unsigned int uint32_t;
648 // PPC64-NETBSD:typedef int32_t int_least32_t;
649 // PPC64-NETBSD:typedef uint32_t uint_least32_t;
650 // PPC64-NETBSD:typedef int32_t int_fast32_t;
651 // PPC64-NETBSD:typedef uint32_t uint_fast32_t;
653 // PPC64-NETBSD:typedef short int16_t;
654 // PPC64-NETBSD:typedef unsigned short uint16_t;
655 // PPC64-NETBSD:typedef int16_t int_least16_t;
656 // PPC64-NETBSD:typedef uint16_t uint_least16_t;
657 // PPC64-NETBSD:typedef int16_t int_fast16_t;
658 // PPC64-NETBSD:typedef uint16_t uint_fast16_t;
660 // PPC64-NETBSD:typedef signed char int8_t;
661 // PPC64-NETBSD:typedef unsigned char uint8_t;
662 // PPC64-NETBSD:typedef int8_t int_least8_t;
663 // PPC64-NETBSD:typedef uint8_t uint_least8_t;
664 // PPC64-NETBSD:typedef int8_t int_fast8_t;
665 // PPC64-NETBSD:typedef uint8_t uint_fast8_t;
667 // PPC64-NETBSD:typedef int64_t intptr_t;
668 // PPC64-NETBSD:typedef uint64_t uintptr_t;
670 // PPC64-NETBSD:typedef long long int intmax_t;
671 // PPC64-NETBSD:typedef long long unsigned int uintmax_t;
673 // PPC64-NETBSD:INT8_MAX_ 127
674 // PPC64-NETBSD:INT8_MIN_ (-127 -1)
675 // PPC64-NETBSD:UINT8_MAX_ 255
676 // PPC64-NETBSD:INT_LEAST8_MIN_ (-127 -1)
677 // PPC64-NETBSD:INT_LEAST8_MAX_ 127
678 // PPC64-NETBSD:UINT_LEAST8_MAX_ 255
679 // PPC64-NETBSD:INT_FAST8_MIN_ (-127 -1)
680 // PPC64-NETBSD:INT_FAST8_MAX_ 127
681 // PPC64-NETBSD:UINT_FAST8_MAX_ 255
683 // PPC64-NETBSD:INT16_MAX_ 32767
684 // PPC64-NETBSD:INT16_MIN_ (-32767 -1)
685 // PPC64-NETBSD:UINT16_MAX_ 65535
686 // PPC64-NETBSD:INT_LEAST16_MIN_ (-32767 -1)
687 // PPC64-NETBSD:INT_LEAST16_MAX_ 32767
688 // PPC64-NETBSD:UINT_LEAST16_MAX_ 65535
689 // PPC64-NETBSD:INT_FAST16_MIN_ (-32767 -1)
690 // PPC64-NETBSD:INT_FAST16_MAX_ 32767
691 // PPC64-NETBSD:UINT_FAST16_MAX_ 65535
693 // PPC64-NETBSD:INT32_MAX_ 2147483647
694 // PPC64-NETBSD:INT32_MIN_ (-2147483647 -1)
695 // PPC64-NETBSD:UINT32_MAX_ 4294967295U
696 // PPC64-NETBSD:INT_LEAST32_MIN_ (-2147483647 -1)
697 // PPC64-NETBSD:INT_LEAST32_MAX_ 2147483647
698 // PPC64-NETBSD:UINT_LEAST32_MAX_ 4294967295U
699 // PPC64-NETBSD:INT_FAST32_MIN_ (-2147483647 -1)
700 // PPC64-NETBSD:INT_FAST32_MAX_ 2147483647
701 // PPC64-NETBSD:UINT_FAST32_MAX_ 4294967295U
703 // PPC64-NETBSD:INT64_MAX_ 9223372036854775807LL
704 // PPC64-NETBSD:INT64_MIN_ (-9223372036854775807LL -1)
705 // PPC64-NETBSD:UINT64_MAX_ 18446744073709551615ULL
706 // PPC64-NETBSD:INT_LEAST64_MIN_ (-9223372036854775807LL -1)
707 // PPC64-NETBSD:INT_LEAST64_MAX_ 9223372036854775807LL
708 // PPC64-NETBSD:UINT_LEAST64_MAX_ 18446744073709551615ULL
709 // PPC64-NETBSD:INT_FAST64_MIN_ (-9223372036854775807LL -1)
710 // PPC64-NETBSD:INT_FAST64_MAX_ 9223372036854775807LL
711 // PPC64-NETBSD:UINT_FAST64_MAX_ 18446744073709551615ULL
713 // PPC64-NETBSD:INTPTR_MIN_ (-9223372036854775807LL -1)
714 // PPC64-NETBSD:INTPTR_MAX_ 9223372036854775807LL
715 // PPC64-NETBSD:UINTPTR_MAX_ 18446744073709551615ULL
716 // PPC64-NETBSD:PTRDIFF_MIN_ (-9223372036854775807LL -1)
717 // PPC64-NETBSD:PTRDIFF_MAX_ 9223372036854775807LL
718 // PPC64-NETBSD:SIZE_MAX_ 18446744073709551615ULL
720 // PPC64-NETBSD:INTMAX_MIN_ (-9223372036854775807LL -1)
721 // PPC64-NETBSD:INTMAX_MAX_ 9223372036854775807LL
722 // PPC64-NETBSD:UINTMAX_MAX_ 18446744073709551615ULL
724 // PPC64-NETBSD:SIG_ATOMIC_MIN_ (-2147483647 -1)
725 // PPC64-NETBSD:SIG_ATOMIC_MAX_ 2147483647
726 // PPC64-NETBSD:WINT_MIN_ (-2147483647 -1)
727 // PPC64-NETBSD:WINT_MAX_ 2147483647
729 // PPC64-NETBSD:WCHAR_MAX_ 2147483647
730 // PPC64-NETBSD:WCHAR_MIN_ (-2147483647 -1)
732 // PPC64-NETBSD:INT8_C_(0) 0
733 // PPC64-NETBSD:UINT8_C_(0) 0U
734 // PPC64-NETBSD:INT16_C_(0) 0
735 // PPC64-NETBSD:UINT16_C_(0) 0U
736 // PPC64-NETBSD:INT32_C_(0) 0
737 // PPC64-NETBSD:UINT32_C_(0) 0U
738 // PPC64-NETBSD:INT64_C_(0) 0LL
739 // PPC64-NETBSD:UINT64_C_(0) 0ULL
741 // PPC64-NETBSD:INTMAX_C_(0) 0LL
742 // PPC64-NETBSD:UINTMAX_C_(0) 0ULL