| File: | pr/Linux6.7_x86_64_gcc_glibc_PTH_64_DBG.OBJ/lib/ds/../../../lib/ds/plvrsion.c |
| Warning: | line 91, column 5 Value stored to 'dummy' is never read |
Press '?' to see keyboard shortcuts
Keyboard shortcuts:
| 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
| 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
| 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 5 | |
| 6 | #include "prinit.h" |
| 7 | #include "prvrsion.h" |
| 8 | |
| 9 | /************************************************************************/ |
| 10 | /**************************IDENTITY AND VERSIONING***********************/ |
| 11 | /************************************************************************/ |
| 12 | #include "_pl_bld.h" |
| 13 | #if !defined(_BUILD_TIME1721193942000000LL) |
| 14 | #ifdef HAVE_LONG_LONG |
| 15 | #define _BUILD_TIME1721193942000000LL 0 |
| 16 | #else |
| 17 | #define _BUILD_TIME1721193942000000LL {0, 0} |
| 18 | #endif |
| 19 | #endif |
| 20 | #if !defined(_BUILD_STRING"2024-07-17 05:25:42") |
| 21 | #define _BUILD_STRING"2024-07-17 05:25:42" "" |
| 22 | #endif |
| 23 | #if !defined(_PRODUCTION"libplds4.so") |
| 24 | #define _PRODUCTION"libplds4.so" "" |
| 25 | #endif |
| 26 | #if defined(DEBUG1) |
| 27 | #define _DEBUG_STRING" (debug)" " (debug)" |
| 28 | #else |
| 29 | #define _DEBUG_STRING" (debug)" "" |
| 30 | #endif |
| 31 | |
| 32 | /* |
| 33 | * A trick to expand the PR_VMAJOR macro before concatenation. |
| 34 | */ |
| 35 | #define CONCAT(x, y)xy x ## y |
| 36 | #define CONCAT2(x, y)xy CONCAT(x, y)xy |
| 37 | #define VERSION_DESC_NAMEprVersionDescription_libplds4 CONCAT2(prVersionDescription_libplds, PR_VMAJOR)prVersionDescription_libplds4 |
| 38 | |
| 39 | PRVersionDescription VERSION_DESC_NAMEprVersionDescription_libplds4 = |
| 40 | { |
| 41 | /* version */ 2, /* this is the only one supported */ |
| 42 | /* buildTime */ _BUILD_TIME1721193942000000LL, /* usecs since midnight 1/1/1970 GMT */ |
| 43 | /* buildTimeString */ _BUILD_STRING"2024-07-17 05:25:42", /* ditto, but human readable */ |
| 44 | /* vMajor */ PR_VMAJOR4, /* NSPR's version number */ |
| 45 | /* vMinor */ PR_VMINOR36, /* and minor version */ |
| 46 | /* vPatch */ PR_VPATCH0, /* and patch */ |
| 47 | /* beta */ PR_BETA1, /* beta build boolean */ |
| 48 | #if defined(DEBUG1) |
| 49 | /* debug */ PR_TRUE1, /* a debug build */ |
| 50 | #else |
| 51 | /* debug */ PR_FALSE0, /* an optomized build */ |
| 52 | #endif |
| 53 | /* special */ PR_FALSE0, /* they're all special, but ... */ |
| 54 | /* filename */ _PRODUCTION"libplds4.so", /* the produced library name */ |
| 55 | /* description */ "Portable runtime", /* what we are */ |
| 56 | /* security */ "N/A", /* not applicable here */ |
| 57 | /* copywrite */ "This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.", |
| 58 | /* comment */ "http://www.mozilla.org/MPL/", |
| 59 | /* specialString */ "" |
| 60 | }; |
| 61 | |
| 62 | #ifdef XP_UNIX1 |
| 63 | |
| 64 | /* |
| 65 | * Version information for the 'ident' and 'what commands |
| 66 | * |
| 67 | * NOTE: the first component of the concatenated rcsid string |
| 68 | * must not end in a '$' to prevent rcs keyword substitution. |
| 69 | */ |
| 70 | static char rcsid[] = "$Header: NSPR " PR_VERSION"4.36 Beta" _DEBUG_STRING" (debug)" |
| 71 | " " _BUILD_STRING"2024-07-17 05:25:42" " $"; |
| 72 | static char sccsid[] = "@(#)NSPR " PR_VERSION"4.36 Beta" _DEBUG_STRING" (debug)" |
| 73 | " " _BUILD_STRING"2024-07-17 05:25:42"; |
| 74 | |
| 75 | #endif /* XP_UNIX */ |
| 76 | |
| 77 | #ifdef _PR_HAS_PRAGMA_DIAGNOSTIC |
| 78 | #pragma GCC diagnostic push |
| 79 | #pragma GCC diagnostic ignored "-Wunused-but-set-variable" |
| 80 | #endif |
| 81 | PR_IMPLEMENT(const PRVersionDescription*)__attribute__((visibility("default"))) const PRVersionDescription * libVersionPoint() |
| 82 | { |
| 83 | #ifdef XP_UNIX1 |
| 84 | /* |
| 85 | * Add dummy references to rcsid and sccsid to prevent them |
| 86 | * from being optimized away as unused variables. |
| 87 | */ |
| 88 | const char *dummy; |
| 89 | |
| 90 | dummy = rcsid; |
| 91 | dummy = sccsid; |
Value stored to 'dummy' is never read | |
| 92 | #endif |
| 93 | return &VERSION_DESC_NAMEprVersionDescription_libplds4; |
| 94 | } /* versionEntryPointType */ |
| 95 | #ifdef _PR_HAS_PRAGMA_DIAGNOSTIC |
| 96 | #pragma GCC diagnostic pop |
| 97 | #endif |
| 98 | |
| 99 | /* plvrsion.c */ |
| 100 |