[llvm-commits] [llvm-gcc-4.2] r40773 [19/19] - in /llvm-gcc-4.2/trunk: ./ config/ contrib/ contrib/reghunt/ contrib/regression/ fixincludes/ gcc/ gcc/autom4te.cache/ gcc/config/ gcc/config/arm/ gcc/config/i386/ gcc/config/rs6000/ gcc/cp/ gcc/doc/ gcc/ginclude/ gcc/objc/ gcc/objcp/ gcc/po/ gcc/testsuite/ gcc/testsuite/bugs/powerpc/ gcc/testsuite/g++.apple/ gcc/testsuite/g++.dg/ gcc/testsuite/g++.old-deja/g++.oliva/ gcc/testsuite/gcc.apple/ gcc/testsuite/gcc.dg/ gcc/testsuite/gcc.dg/cpp/ gcc/testsuite/gcc.target/i386/ gc...
Devang Patel
dpatel at apple.com
Thu Aug 2 18:00:45 PDT 2007
Modified: llvm-gcc-4.2/trunk/gcc/predict.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/predict.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/predict.c (original)
+++ llvm-gcc-4.2/trunk/gcc/predict.c Thu Aug 2 20:00:37 2007
@@ -776,7 +776,6 @@
/* Free basic blocks from get_loop_body. */
free (bbs);
}
-
if (!rtlsimpleloops)
{
Modified: llvm-gcc-4.2/trunk/gcc/recog.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/recog.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/recog.c (original)
+++ llvm-gcc-4.2/trunk/gcc/recog.c Thu Aug 2 20:00:37 2007
@@ -1407,16 +1407,16 @@
int i;
int n_sets;
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
/* Count backwards through CLOBBERs/USEs to determine number of SETs. */
for (i = XVECLEN (body, 0); i > 0; i--)
{
if (GET_CODE (XVECEXP (body, 0, i - 1)) == SET)
break;
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
if (GET_CODE (XVECEXP (body, 0, i - 1)) != CLOBBER
&& GET_CODE (XVECEXP (body, 0, i - 1)) != USE)
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
return -1;
}
@@ -1448,13 +1448,13 @@
body is [(asm_operands ...) (clobber (reg ...))...]. */
int i;
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
/* Make sure all the other parallel things really are clobbers or uses. */
for (i = XVECLEN (body, 0) - 1; i > 0; i--)
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
if (GET_CODE (XVECEXP (body, 0, i)) != CLOBBER
&& GET_CODE (XVECEXP (body, 0, i)) != USE)
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
return -1;
return ASM_OPERANDS_INPUT_LENGTH (XVECEXP (body, 0, 0));
@@ -1542,11 +1542,11 @@
&& GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
{
rtx asmop = SET_SRC (XVECEXP (body, 0, 0));
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
int nparallel = XVECLEN (body, 0); /* Includes CLOBBERs/USEs. */
int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
int nout = 0; /* Does not include CLOBBERs/USEs. */
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
/* At least one output, plus some CLOBBERs. */
@@ -1554,10 +1554,10 @@
Their constraints are in the ASM_OPERANDS itself. */
for (i = 0; i < nparallel; i++)
{
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER
|| GET_CODE (XVECEXP (body, 0, i)) == USE)
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
break; /* Past last SET */
if (operands)
Modified: llvm-gcc-4.2/trunk/gcc/reload1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/reload1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/reload1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/reload1.c Thu Aug 2 20:00:37 2007
@@ -5850,10 +5850,6 @@
and of the desired class. */
if (equiv != 0)
{
- /* APPLE LOCAL begin don't reload unavailable hard regs. PR/16028 */
- /* MERGE FIXME: I removed a hunk that should have been fixed for PR 16028 */
- /* First hunk is current code, second was the APPLE LOCAL code */
-#if 1
int regs_used = 0;
int bad_for_class = 0;
int max_regno = regno + rld[r].nregs;
@@ -5872,20 +5868,6 @@
rld[r].in, rld[r].out, r, 1))
|| bad_for_class)
equiv = 0;
-#else
- int bad_for_class = 0;
- int max_regno = regno + rld[r].nregs;
-
- for (i = regno; i < max_regno; i++)
- bad_for_class |= ! TEST_HARD_REG_BIT (reg_class_contents[(int) rld[r].class],
- i);
- if (bad_for_class
- || ! free_for_value_p (regno, rld[r].mode,
- rld[r].opnum, rld[r].when_needed,
- rld[r].in, rld[r].out, r, 1))
- equiv = 0;
-#endif
- /* APPLE LOCAL end don't reload unavailable hard regs. PR/16028 */
}
if (equiv != 0 && ! HARD_REGNO_MODE_OK (regno, rld[r].mode))
Modified: llvm-gcc-4.2/trunk/gcc/stmt.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/stmt.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/stmt.c (original)
+++ llvm-gcc-4.2/trunk/gcc/stmt.c Thu Aug 2 20:00:37 2007
@@ -640,18 +640,18 @@
VOL nonzero means the insn is volatile; don't optimize it. */
-/* APPLE LOCAL begin CW asm blocks. */
+/* APPLE LOCAL begin CW asm blocks */
static void
expand_asm_operands (tree string, tree outputs, tree inputs,
tree clobbers, int vol, tree uses, location_t locus)
-/* APPLE LOCAL end CW asm blocks. */
+/* APPLE LOCAL end CW asm blocks */
{
rtvec argvec, constraintvec;
rtx body;
int ninputs = list_length (inputs);
int noutputs = list_length (outputs);
int ninout;
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
int nuses = 0;
int nclobbers;
HARD_REG_SET clobbered_regs;
@@ -713,12 +713,12 @@
if (i >= 0)
{
/* Clobbering the PIC register is an error. */
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
/* Clobbering of PIC register is allowed in CW asm block.
We check this condition by checking value of 'uses'.
'uses' is non-null for a CW asm expression only. */
if (uses == NULL && i == (int) PIC_OFFSET_TABLE_REGNUM)
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
{
error ("PIC register %qs clobbered in %<asm%>", regname);
return;
@@ -952,7 +952,7 @@
generating_concat_p = old_generating_concat_p;
ASM_OPERANDS_INPUT (body, i) = op;
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
/* Crude way of detecting an entry static label declaration
(See iasm_entry). Make this a local symbol. */
if (i == 0 && !TREE_CHAIN (tail)
@@ -962,7 +962,7 @@
SYMBOL_REF_FLAGS (op) |= SYMBOL_FLAG_LOCAL;
SYMBOL_REF_FLAGS (op) &= ~SYMBOL_FLAG_EXTERNAL;
}
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
= gen_rtx_ASM_INPUT (TYPE_MODE (type),
@@ -991,10 +991,10 @@
= gen_rtx_ASM_INPUT (inout_mode[i], ggc_strdup (buffer));
}
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
for (tail = uses; tail; tail = TREE_CHAIN (tail))
nuses++;
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
generating_concat_p = old_generating_concat_p;
/* Now, for each output, construct an rtx
@@ -1002,14 +1002,14 @@
ARGVEC CONSTRAINTS OPNAMES))
If there is more than one, put them inside a PARALLEL. */
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
if (noutputs == 1 && nclobbers == 0 && nuses == 0)
{
ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = ggc_strdup (constraints[0]);
emit_insn (gen_rtx_SET (VOIDmode, output_rtx[0], body));
}
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
else if (noutputs == 0 && nclobbers == 0 && nuses == 0)
{
/* No output operands: put in a raw ASM_OPERANDS rtx. */
@@ -1024,7 +1024,7 @@
if (num == 0)
num = 1;
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num + nclobbers + nuses));
/* For each output operand, store a SET. */
@@ -1101,7 +1101,7 @@
= gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
}
- /* APPLE LOCAL begin CW asm blocks. */
+ /* APPLE LOCAL begin CW asm blocks */
for (tail = uses; tail; tail = TREE_CHAIN (tail))
{
int regno;
@@ -1111,7 +1111,7 @@
rtx_reg = gen_rtx_REG (QImode, regno);
XVECEXP (body, 0, i++) = gen_rtx_USE (VOIDmode, rtx_reg);
}
- /* APPLE LOCAL end CW asm blocks. */
+ /* APPLE LOCAL end CW asm blocks */
emit_insn (body);
}
@@ -1150,7 +1150,7 @@
OUTPUTS some trees for where the values were actually stored. */
expand_asm_operands (ASM_STRING (exp), outputs, ASM_INPUTS (exp),
ASM_CLOBBERS (exp), ASM_VOLATILE_P (exp),
- /* APPLE LOCAL CW asm blocks. */
+ /* APPLE LOCAL CW asm blocks */
ASM_USES (exp),
input_location);
Modified: llvm-gcc-4.2/trunk/gcc/stub-objc.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/stub-objc.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/stub-objc.c (original)
+++ llvm-gcc-4.2/trunk/gcc/stub-objc.c Thu Aug 2 20:00:37 2007
@@ -377,11 +377,8 @@
objc_add_property_variable (tree ARG_UNUSED (prop))
{
}
-tree
-objc_build_getter_call (tree ARG_UNUSED (datum), tree ARG_UNUSED (component))
-{
- return 0;
-}
+/* APPLE LOCAL radar 5285911 */
+/* Stub for objc_build_getter_call is removed. */
tree
objc_build_setter_call (tree ARG_UNUSED (lhs), tree ARG_UNUSED (rhs))
{
@@ -442,18 +439,17 @@
{
return 0;
}
-
-/* APPLE LOCAL begin radar 4426814 */
-tree
-objc_generate_weak_read (tree expr)
+/* APPLE LOCAL begin radar 5276085 */
+void objc_weak_reference_expr (tree* ARG_UNUSED (expr))
{
- return expr;
}
-void objc_remove_weak_read (tree* ARG_UNUSED (expr))
+tree
+objc_build_weak_reference_tree (tree expr)
{
+ return expr;
}
-/* APPLE LOCAL end radar 4426814 */
+/* APPLE LOCAL end radar 5276085 */
/* APPLE LOCAL begin ObjC new abi */
tree
@@ -535,11 +531,19 @@
tree ARG_UNUSED (tree_list))
{
}
+/* APPLE LOCAL begin radar 5285911 */
+tree
+objc_build_property_reference_expr (tree ARG_UNUSED (datum),
+ tree ARG_UNUSED (component))
+{
+ return 0;
+}
bool
-objc_property_call (tree ARG_UNUSED (exp))
+objc_property_reference_expr (tree ARG_UNUSED (exp))
{
return false;
}
+/* APPLE LOCAL end radar 5285911 */
/* APPLE LOCAL end objc new property */
/* APPLE LOCAL begin radar 2848255 */
bool
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog Thu Aug 2 20:00:37 2007
@@ -99,6 +99,93 @@
/* APPLE LOCAL merge marger */
/* Stuff above is only in mainline, not the 4.2 branch */
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
+2007-07-11 Paolo Carlini <pcarlini at suse.de>
+
+ PR c++/31027
+ * g++.dg/inherit/virtual4.C: New.
+
+2007-07-08 Kaveh R. Ghazi <ghazi at caip.rutgers.edu>
+
+ * gcc.dg/c99-math-double-1.c, gcc.dg/c99-math-float-1.c,
+ c99-math-long-double-1.c, c99-math.h: Test subnormals.
+
+2007-07-07 Jerry DeLisle <jvdelisle at gcc.gnu.org>
+
+ PR libgfortran/32554
+ * gfortran.dg/fmt_p_1.f90: New test.
+
+2007-07-07 Mark Mitchell <mark at codesourcery.com>
+
+ PR c++/32232
+ * g++.dg/template/overload9.C: New test.
+
+2007-07-06 Mark Mitchell <mark at codesourcery.com>
+
+ PR c++/32245
+ * g++.dg/init/ptrmem4.C: New test.
+
+ PR c++/32251
+ * g++.dg/init/new21.C: Likewise.
+
+ PR c++/31992
+ * g++.dg/template/static30.C: Likewise.
+
+2007-07-06 Uros Bizjak <ubizjak at gmail.com>
+
+ PR rtl-optimization/32450
+ * gcc.dg/pr32450.c: New runtime test.
+
+2007-07-03 Mark Mitchell <mark at codesourcery.com>
+
+ PR c++/31338
+ * g++.dg/ext/complex2.C: New test.
+
+2007-07-04 Richard Guenther <rguenther at suse.de>
+
+ PR tree-optimization/32500
+ * gcc.c-torture/execute/pr32500.c: New testcase.
+
+2007-07-04 Uros Bizjak <ubizjak at gmail.com>
+
+ PR tree-optimization/31966
+ PR tree-optimization/32533
+ * gcc.dg/tree-ssa/pr31966.c: New runtime test.
+ * gfortran.dg/pr32533.f90: Ditto.
+
+2007-07-02 Kaveh R. Ghazi <ghazi at caip.rutgers.edu>
+
+ * gcc.dg/c99-math.h: Fix typo.
+
+2007-07-02 Jakub Jelinek <jakub at redhat.com>
+
+ PR libgomp/32468
+ * gcc.dg/gomp/pr32468-1.c: New test.
+
+ PR c++/31748
+ * g++.dg/gomp/pr31748.C: New test.
+
+2007-06-30 Alexandre Oliva <aoliva at redhat.com>
+
+ * g++.dg/ext/interface4.C, g++.dg/ext/interface4.h: New.
+
+2007-06-28 Seongbae Park <seongbae.park at gmail.com>
+
+ * gcc.target/arm/stack-corruption.c: New test.
+
+2007-06-27 Simon Martin <simartin at users.sourceforge.net>
+
+ PR c++/27492
+ * g++.dg/inherit/covariant15.C: New test.
+
+2007-06-21 Uros Bizjak <ubizjak at gmail.com>
+
+ PR target/32389
+ * gcc.target/i386/pr32389.c New test.
+
2007-06-20 Daniel Franke <franke.daniel at gmail.com>
Backport from trunk:
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/ChangeLog.apple Thu Aug 2 20:00:37 2007
@@ -1,3 +1,154 @@
+2007-07-31 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5259868
+ * objc.dg/objc2-ivar-layout-array-8.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-1.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-1.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-2.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-2.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-3.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-3.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-4.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-4.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-5.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-6.m: ivar layout pattern compressed.
+ * objc.dg/objc2-ivar-layout-array-7.m: ivar layout pattern compressed.
+
+2007-07-30 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5297200
+ * objc.dg/objc-gc-3.m: Modified
+
+2007-07-30 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5004398
+ * obj-c++.dg/objc2-const-str-64bit-1.mm: Remove
+
+2007-07-27 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 3742561
+ * objc.dg/objc-gc-aggr-assign-1.m: Add
+ * obj-c++.dg/objc-gc-aggr-assign-1.mm: Add
+
+2007-07-24 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5355344
+ * obj-c++.dg/disambiguate-1.mm: Add
+
+2007-07-24 Hui-May Chang <hm.chang at apple.com>
+
+ Radar 4875126
+ Backport from mainline:
+ 2007-06-13 Eric Christopher <echristo at apple.com>
+ * gcc.target/i386/ssefn-1.c: Add -march=i386.
+
+2007-07-23 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5245963
+ * objc/execute/protocol-isEqual-1.m: Modified
+ * objc/execute/protocol-isEqual-3.m: Modified
+ * objc/execute/protocol-isEqual-2.m: Modified
+ * objc/execute/protocol-isEqual-4.m: Modified
+
+2007-07-20 Hui-May Chang <hm.chang at apple.com>
+
+ Radar 4875094
+ * gcc.target/i386/movq-2.c (dg-options) : Use -Oz instead of -Os.
+
+2007-07-17 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5338634
+ * objc.dg/newproperty-setter-name.m: Add
+
+2007-07-16 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5333233
+ * obj-c++.dg/objc2-instanceSizeStart-1.mm: Add
+
+2007-07-17 Hui-May Chang <hm.chang at apple.com>
+
+ * gcc.target/i386/reload-1.c. Replaced scan-file by scan-rtl-dump.
+
+2007-07-13 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5277239
+ * objc.dg/newproperty-class-method-1.m: Add
+ * objc.dg/newproperty-class-method-2.m: Add
+ * obj-c++.dg/newproperty-class-method-1.mm: Add
+ * obj-c++.dg/newproperty-class-method-2.mm: Add
+ * objc.dg/property-neg-4.m: Modified
+ * obj-c++.dg/property-neg-4.mm: Modified
+
+2007-07-10 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5285911
+ * objc.dg/newproperty-deprecated-attr-1.m: Modified
+ * objc.dg/newproperty-5.m: Add
+ * obj-c++.dg/newproperty-deprecated-attr-1.mm: Modified
+ * obj-c++.dg/newproperty-5.mm: Add
+
+2007-07-5 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5315235
+ * objc.dg/const-cfstring-7.m: Modified
+ * objc.dg/objc2-package-ivar-1.m: Modified
+ * obj-c++.dg/objc2-package-ivar-1.mm: Modified
+ * obj-c++.dg/const-cfstring-4-64bit.mm: Modified
+ * obj-c++.dg/objc2-none-fragile-ivar-use.mm: Modified
+ * obj-c++.dg/objc2-ivar-test-2.mm: Modified
+ * obj-c++.dg/cxx-ivars-4.mm: Modified
+ * obj-c++.dg/objc2-const-str-64bit-1.mm: Modified
+ * obj-c++.dg/const-cfstring-7.mm: Modified
+ * obj-c++.dg/encode-3-64bit.mm: Modified
+
+2007-07-5 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5274332
+ gcc.apple/asm-static-entry-1.c: Modified to be
+ compilation model neutral.
+
+2007-07-5 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5297325
+ * objc.dg/stubify-1.m: Modified to make it a 32bit
+ abi test.
+
+2007-06-29 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5082000
+ * objc.dg/objc2-ivar-layout-array.m: Add
+ * objc.dg/objc2-ivar-layout-array-1.m: Add
+ * objc.dg/objc2-ivar-layout-array-2.m: Add
+ * objc.dg/objc2-ivar-layout-array-3.m: Add
+ * objc.dg/objc2-ivar-layout-array-4.m: Add
+ * objc.dg/objc2-ivar-layout-array-5.m: Add
+ * objc.dg/objc2-ivar-layout-array-6.m: Add
+ * objc.dg/objc2-ivar-layout-array-7.m: Add
+ * objc.dg/objc2-ivar-layout-array-8.m: Add
+ * objc.dg/objc2-ivar-layout-array-9.m: Add
+ * objc.dg/objc2-ivar-layout-1.m: Modified
+
+2007-06-29 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5251019
+ * objc.dg/objc2-ivar-layout-2.m: Modified
+ * objc.dg/objc2-ivar-layout-3.m: Add
+ * objc.dg/objc2-ivar-layout-4.m: Add
+
+2007-06-29 Fariborz Jahanian <fjahanian at apple.com>
+
+ Radar 5276085
+ * objc.dg/objc-gc-weak-3.m: Enhanced to test weak array of ivars.
+ * obj-c++.dg/objc-gc-weak-4.mm: Ditto.
+ * objc.dg/objc-gc-weak-2.m: Modified
+ * obj-c++.dg/objc-gc-weak-2.mm : Modifed
+
+2007-06-27 Hui-May Chang <hm.chang at apple.com>
+
+ Radar 4641942
+ * gcc.apple/4641942.c : New.
+
2007-06-26 Hui-May Chang <hm.chang at apple.com>
Backport from mainline:
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/g++.xfail
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/g%2B%2B.xfail?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/g++.xfail (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/g++.xfail Thu Aug 2 20:00:37 2007
@@ -22,7 +22,8 @@
4869813: g++.dg/apple-altivec-2.C (test for excess errors)
4872028: g++.dg/other/unused1.C scan-assembler (string|ascii?)z?\t"class2("|\\\\000)
4872028: g++.dg/other/unused1.C scan-assembler (string|ascii?)z?\t"printer("|\\\\000)
-5281849: g++.apple/visibility-1.C scan-not-hidden private_extern[ \t_]*_?__ZTI1S
+5281849: g++.apple/visibility-1.C scan-hidden private_extern[ \t_]*_?__ZTI1T
+5317196: g++.old-deja/g++.pt/const2.C (test for excess errors)
#
# The following tests fail only when the c++ suite is run through Obj-C++.
#
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/gcc.xfail
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/gcc.xfail?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/gcc.xfail (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/gcc.xfail Thu Aug 2 20:00:37 2007
@@ -78,6 +78,8 @@
5271896: gcc.apple/asm-label-2.c (test for excess errors)
5271896: gcc.apple/asm-read-global.c (test for excess errors)
5271896: gcc.apple/asm-test-nofralloc.c (test for excess errors)
+5341634: gcc.dg/darwin64-abi.c (internal compiler error)
+5341634: gcc.dg/darwin64-abi.c (test for excess errors)
#
# x86 only
4874197: gcc.apple/4283414.c scan-assembler pcmpeq
@@ -158,9 +160,31 @@
3904228: gcc.dg/uninit-A.c (test for excess errors)
3904235: gcc.dg/wtr-unary-plus-1.c unary plus operator (test for warnings, line 12)
3904235: gcc.dg/wtr-unary-plus-1.c unary plus operator (test for warnings, line 13)
-5275911: gcc.dg/invalid-call-1.c non-compatible type (test for warnings, line 16)
+5275911: gcc.dg/invalid-call-1.c non-compatible type (test for warnings, line 18)
0000000: compiler driver --coverage option(s) (compiler options)
#
+# -mmacosx-version-min=10.4 only
+5342828: gcc.dg/pie-link.c (test for excess errors)
+#
+# -m64 -mmacosx-version-min=10.4 only
+5342857: gcc.apple/objcpp.c (test for excess errors)
+#
+# ppc -m64 -mmacosx-version-min=10.4 only
+5342320: gcc.c-torture/execute/conversion.c compilation, -O0
+5342320: gcc.c-torture/execute/conversion.c compilation, -O1
+5342320: gcc.c-torture/execute/conversion.c compilation, -O2
+5342320: gcc.c-torture/execute/conversion.c compilation, -O3 -fomit-frame-pointer
+5342320: gcc.c-torture/execute/conversion.c compilation, -O3 -g
+5342320: gcc.c-torture/execute/conversion.c compilation, -Os
+5342320: gcc.c-torture/execute/conversion.c compilation, -fast
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -O0 (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -O1 (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -O2 (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -O3 -fomit-frame-pointer (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -O3 -g (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -Os (test for excess errors)
+5342320: gcc.dg/torture/fp-int-convert-long-double.c -fast (test for excess errors)
+#
# when running through ObjC on x86 only
5087201: gcc.apple/4443946.c (test for excess errors)
5087201: gcc.apple/asm-block-11.c (test for excess errors)
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/objc.xfail
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/objc.xfail?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/objc.xfail (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/bugs/powerpc/objc.xfail Thu Aug 2 20:00:37 2007
@@ -74,6 +74,97 @@
5095016: objc.dg-struct-layout-encoding-1/t029_main.m (test for excess errors)
5095016: objc.dg-struct-layout-encoding-1/t030_main.m (test for excess errors)
5095016: objc.dg-struct-layout-encoding-1/t031_main.m (test for excess errors)
+5299997: objc/execute/bycopy-2.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -Os -fgnu-runtime
+5299997: objc/execute/bycopy-2.m execution, -fast -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -Os -fgnu-runtime
+5299997: objc/execute/formal_protocol-1.m execution, -fast -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -Os -fgnu-runtime
+5299997: objc/execute/formal_protocol-2.m execution, -fast -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -Os -fgnu-runtime
+5299997: objc/execute/formal_protocol-3.m execution, -fast -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -Os -fgnu-runtime
+5299997: objc/execute/formal_protocol-4.m execution, -fast -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -Os -fgnu-runtime
+5299997: objc/execute/formal_protocol-7.m execution, -fast -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -Os -fgnu-runtime
+5299997: objc/execute/np-1.m execution, -fast -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -Os -fgnu-runtime
+5299997: objc/execute/np-2.m execution, -fast -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -O0 -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -O1 -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -O2 -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -O3 -g -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -Os -fgnu-runtime
+5299997: objc/execute/protocol.m execution, -fast -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -O0 -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -O1 -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -O2 -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -O3 -g -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -Os -fgnu-runtime
+5299997: objc/execute/string1.m compilation, -fast -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -O0 -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -O1 -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -O2 -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -O3 -g -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -Os -fgnu-runtime
+5299997: objc/execute/string2.m compilation, -fast -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -O0 -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -O1 -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -O2 -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -O3 -g -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -Os -fgnu-runtime
+5299997: objc/execute/string3.m compilation, -fast -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -O0 -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -O1 -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -O2 -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -O3 -fomit-frame-pointer -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -O3 -g -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -Os -fgnu-runtime
+5299997: objc/execute/string4.m compilation, -fast -fgnu-runtime
#
# the following fail with -m64 only
5245963: objc/execute/protocol-isEqual-3.m execution, -O0 -fnext-runtime
@@ -85,9 +176,77 @@
5245963: objc/execute/protocol-isEqual-3.m execution, -fast -fnext-runtime
5272224: objc.dg/const-str-3.m execution test
#
+# the following fail for ppc only
+5303263: objc.dg/encode-8.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t001_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t005_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t009_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t010_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t013_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t014_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t016_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t017_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t018_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t019_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t020_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t021_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t023_main.m execution test
+5303263: objc.dg-struct-layout-encoding-1/t024_main.m execution test
+#
# the following fail for ppc 32-bit only
5297200: objc.dg/objc-gc-3.m execution test
#
+# the following fail for ppc 64-bit only
+5303263: objc/execute/bf-14.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-14.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-19.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-5.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-6.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-7.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-8.m execution, -fast -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -O0 -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -O1 -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -O2 -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -O3 -fomit-frame-pointer -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -O3 -g -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -Os -fgnu-runtime
+5303263: objc/execute/bf-9.m execution, -fast -fgnu-runtime
+#
# the following fail for x86
#
# the following failures are for x86 -m64 only
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/g++.apple/visibility-1.C
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/g%2B%2B.apple/visibility-1.C?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/g++.apple/visibility-1.C (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/g++.apple/visibility-1.C Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file ms tinfo compat */
+/* APPLE LOCAL file mainline 2007-06-28 ms tinfo compat 4230099 */
/* { dg-require-visibility "" } */
/* { dg-options "-fvisibility-ms-compat" } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/g++.dg/kext11.C
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/g%2B%2B.dg/kext11.C?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/g++.dg/kext11.C (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/g++.dg/kext11.C Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file ptmf casts --bowdidge */
+/* APPLE LOCAL file kext ptmf casts --bowdidge */
/* In gcc-4.0 and beyond, kexts are not permitted to cast
pointer-to-member- functions into pointer-to-functions.
These casts should be flagged as a hard error if
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/g%2B%2B.old-deja/g%2B%2B.oliva/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.apple/asm-static-entry-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.apple/asm-static-entry-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.apple/asm-static-entry-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.apple/asm-static-entry-1.c Thu Aug 2 20:00:37 2007
@@ -1,19 +1,19 @@
-/* APPLE LOCAL begin radar 4211430 */
+/* APPLE LOCAL file radar 4211430 - radar 5274332 */
/* { dg-do run { target powerpc*-*-darwin* } } */
/* { dg-options "-fasm-blocks" } */
#include <stdio.h>
+#include <stdint.h>
extern void abort();
-typedef unsigned int UInt32;
-#define FUNCPTR_TO_UINT(f) ((UInt32)(&(f)))
+#define FUNCPTR_TO_UINT(f) ((intptr_t)(&(f)))
/*
*
* C versions
*
*/
-static UInt32 DoAsmCodeTest_C();
+static intptr_t DoAsmCodeTest_C();
static void flush_cache_line_c(unsigned long inCacheLine);
static void flush_cache_line_c_end(); /* { dg-warning "used but never defined" } */
@@ -29,10 +29,10 @@
entry static flush_cache_line_c_end;
}
-UInt32
+intptr_t
DoAsmCodeTest_C()
{
- UInt32 mw_size = 0;
+ intptr_t mw_size = 0;
mw_size = FUNCPTR_TO_UINT(flush_cache_line_c);
mw_size = FUNCPTR_TO_UINT(flush_cache_line_c_end) - mw_size;
@@ -45,4 +45,3 @@
abort();
return 0;
}
-/* APPLE LOCAL end radar 4211430 */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-double-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-double-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-double-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-double-1.c Thu Aug 2 20:00:37 2007
@@ -10,9 +10,10 @@
double inf = INFINITY;
double huge = HUGE_VAL;
double norm = __DBL_MIN__;
+ double sub = __DBL_MIN__ / 2;
double zero = 0.0;
- C99_MATH_TESTS (nan, inf, huge, norm, zero)
+ C99_MATH_TESTS (nan, inf, huge, norm, sub, zero)
return 0;
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-float-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-float-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-float-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-float-1.c Thu Aug 2 20:00:37 2007
@@ -10,9 +10,10 @@
float inf = INFINITY;
float huge = HUGE_VALF;
float norm = __FLT_MIN__;
+ float sub = __FLT_MIN__ / 2;
float zero = 0.0f;
- C99_MATH_TESTS (nan, inf, huge, norm, zero)
+ C99_MATH_TESTS (nan, inf, huge, norm, sub, zero)
return 0;
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-long-double-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-long-double-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-long-double-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math-long-double-1.c Thu Aug 2 20:00:37 2007
@@ -10,9 +10,10 @@
long double inf = INFINITY;
long double huge = HUGE_VALL;
long double norm = __LDBL_MIN__;
+ long double sub = __LDBL_MIN__ / 2;
long double zero = 0.0l;
- C99_MATH_TESTS (nan, inf, huge, norm, zero)
+ C99_MATH_TESTS (nan, inf, huge, norm, sub, zero)
return 0;
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math.h
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math.h?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math.h (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-math.h Thu Aug 2 20:00:37 2007
@@ -2,7 +2,7 @@
extern void abort(void);
-#define C99_MATH_TESTS(nan, inf, huge, norm, zero) \
+#define C99_MATH_TESTS(nan, inf, huge, norm, sub, zero) \
{ \
if (fpclassify (nan) != FP_NAN) \
abort (); \
@@ -16,6 +16,9 @@
if (fpclassify (norm) != FP_NORMAL) \
abort (); \
\
+ if (fpclassify (sub) != FP_SUBNORMAL) \
+ abort (); \
+ \
if (fpclassify (zero) != FP_ZERO) \
abort (); \
\
@@ -32,6 +35,9 @@
if (isnan (norm)) \
abort (); \
\
+ if (isnan (sub)) \
+ abort (); \
+ \
if (isnan (zero)) \
abort (); \
\
@@ -45,7 +51,10 @@
if (!isinf (huge)) \
abort (); \
\
- if (isnan (norm)) \
+ if (isinf (norm)) \
+ abort (); \
+ \
+ if (isinf (sub)) \
abort (); \
\
if (isinf (zero)) \
@@ -64,6 +73,9 @@
if (!isfinite (norm)) \
abort (); \
\
+ if (!isfinite (sub)) \
+ abort (); \
+ \
if (!isfinite (zero)) \
abort (); \
\
@@ -80,6 +92,9 @@
if (!isnormal (norm)) \
abort (); \
\
+ if (isnormal (sub)) \
+ abort (); \
+ \
if (isnormal (zero)) \
abort (); \
\
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-1.c Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 2872232 */
+/* APPLE LOCAL file mainline 2007-06-12 2872232 */
/* Test for <tgmath.h> in C99. */
/* Origin: Matt Austern <austern at apple.com>
/* { dg-do preprocess } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-2.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-2.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-2.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-2.c Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 2872232 */
+/* APPLE LOCAL file mainline 2007-06-12 2872232 */
/* Test for <tgmath.h> in C99. */
/* Origin: Matt Austern <austern at apple.com>
/* { dg-do compile } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-3.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-3.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-3.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-3.c Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 2872232 */
+/* APPLE LOCAL file mainline 2007-06-12 2872232 */
/* Test for <tgmath.h> in C99. */
/* Origin: Matt Austern <austern at apple.com>
/* { dg-do compile } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-4.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-4.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-4.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/c99-tgmath-4.c Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 2872232 */
+/* APPLE LOCAL file mainline 2007-06-12 2872232 */
/* Test for <tgmath.h> in C99. */
/* Origin: Matt Austern <austern at apple.com>
/* { dg-do compile } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98-pedantic.cc
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c%2B%2B98-pedantic.cc?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98-pedantic.cc (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98-pedantic.cc Thu Aug 2 20:00:37 2007
@@ -1,11 +0,0 @@
-/* APPLE LOCAL file rename for HFS */
-/* Copyright (C) 2000 Free Software Foundation, Inc. */
-
-/* { dg-do preprocess } */
-/* { dg-options "-std=c++98 -pedantic" } */
-
-/* This file is for testing the preprocessor in -std=c++98 -pedantic mode.
- Neil Booth, 2 Dec 2000. */
-
-#if 1LL /* { dg-warning "long long" } */
-#endif
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98.cc
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c%2B%2B98.cc?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98.cc (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/cpp/c++98.cc Thu Aug 2 20:00:37 2007
@@ -1,11 +0,0 @@
-/* APPLE LOCAL file rename for HFS */
-/* Copyright (C) 2000 Free Software Foundation, Inc. */
-
-/* { dg-do preprocess } */
-/* { dg-options "-std=c++98" } */
-
-/* This file is for testing the preprocessor in -std=c++98 mode.
- Neil Booth, 2 Dec 2000. */
-
-#if 1LL
-#endif
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/invalid-call-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/invalid-call-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/invalid-call-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.dg/invalid-call-1.c Thu Aug 2 20:00:37 2007
@@ -4,6 +4,7 @@
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mtune=i586" { target i?86-*-* } } */
+/* APPLE LOCAL */
/* { dg-require-effective-target ilp32 } */
typedef void (*fp)(void);
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/movq-2.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/movq-2.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/movq-2.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/movq-2.c Thu Aug 2 20:00:37 2007
@@ -1,6 +1,8 @@
/* PR target/25199 */
/* { dg-do compile } */
-/* { dg-options "-Os -mtune=pentium4" } */
+/* APPLE LOCAL begin radar 4875094 */
+/* { dg-options "-Oz -mtune=pentium4" } */
+/* APPLE LOCAL end radar 4875094 */
/* { dg-require-effective-target ilp32 } */
struct S
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/reload-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/reload-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/reload-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/reload-1.c Thu Aug 2 20:00:37 2007
@@ -2,7 +2,7 @@
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-O3 -msse2 -fdump-rtl-csa" } */
/* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
-/* { dg-final { scan-file reload-1.c.144r.csa "deleted 5 dead insns" } }*/
+/* { dg-final { scan-rtl-dump "deleted 5 dead insns" "csa" } }*/
#include <emmintrin.h>
typedef __SIZE_TYPE__ size_t;
typedef float vFloat __attribute__ ((__vector_size__ (16)));
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/ssefn-1.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/ssefn-1.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/ssefn-1.c (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/gcc.target/i386/ssefn-1.c Thu Aug 2 20:00:37 2007
@@ -7,7 +7,9 @@
/* { dg-final { scan-assembler "mulss" } } */
/* { dg-final { scan-assembler-not "movsd" } } */
/* { dg-final { scan-assembler-not "mulsd" } } */
-/* { dg-options "-O2 -msse -mfpmath=sse -fno-inline" } */
+/* APPLE LOCAL begin mainline 2007-06-13 4875126 */
+/* { dg-options "-O2 -march=i386 -msse -mfpmath=sse -fno-inline" } */
+/* APPLE LOCAL end mainline 2007-06-13 4875126 */
static float xs (void)
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-4-64bit.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/const-cfstring-4-64bit.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-4-64bit.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-4-64bit.mm Thu Aug 2 20:00:37 2007
@@ -1,7 +1,7 @@
/* APPLE LOCAL file 4492976 */
/* Test if constant CFStrings get placed in the correct section. */
-/* { dg-options "-fconstant-cfstrings -m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -fconstant-cfstrings -m64" } */
/* { dg-do compile { target *-*-darwin* } } */
typedef const struct __CFString * CFStringRef;
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-7.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/const-cfstring-7.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-7.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/const-cfstring-7.mm Thu Aug 2 20:00:37 2007
@@ -1,6 +1,6 @@
/* APPLE LOCAL file 4493912 */
/* Test that CFString.length is (long) 64 bit with -m64. */
-/* { dg-options "-fconstant-cfstrings -m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -fconstant-cfstrings -m64" } */
/* { dg-do compile { target powerpc*-*-darwin* } } */
#include <Foundation/NSString.h>
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/cxx-ivars-4.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/cxx-ivars-4.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/cxx-ivars-4.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/cxx-ivars-4.mm Thu Aug 2 20:00:37 2007
@@ -4,7 +4,7 @@
// This test checks that -fobjc-call-cxx-cdtors is the default with -m64.
// This test must compile with no diagnostics.
/* { dg-do compile { target *-*-darwin* } } */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
/* APPLE LOCAL radar 4894756 */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/encode-3-64bit.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/encode-3-64bit.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/encode-3-64bit.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/encode-3-64bit.mm Thu Aug 2 20:00:37 2007
@@ -1,7 +1,7 @@
/* APPLE LOCAL file radar 4492973 */
/* Encoding in -m64 bit mode. */
/* { dg-do run { target *-*-darwin* } } */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
#include <stdlib.h>
#include <string.h>
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/newproperty-deprecated-attr-1.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/newproperty-deprecated-attr-1.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/newproperty-deprecated-attr-1.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/newproperty-deprecated-attr-1.mm Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 4712415 */
+/* APPLE LOCAL file radar 4712415 - radar 5285911 */
/* This program tests use of deprecated attribute on property. */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-new-property" } */
/* { dg-do compile { target *-*-darwin* } } */
@@ -23,7 +23,6 @@
int main(int argc, char *argv[]) {
Bar *f = [Bar new];
- f.FooBar = 1; /* { dg-warning "\'FooBar\' is deprecated" } */
- /* { dg-warning "\'MySetter:\' is deprecated" "" { target *-*-* } 26 } */
+ f.FooBar = 1; /* { dg-warning "\'MySetter:\' is deprecated" } */
return f.FooBar; /* { dg-warning "\'FooBar\' is deprecated" } */
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-2.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc-gc-weak-2.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-2.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-2.mm Thu Aug 2 20:00:37 2007
@@ -22,7 +22,8 @@
static
id objc_assign_weak(id value, id *dest) {
- return ((__weak id)*dest = value);
+ /* APPLE LOCAL radar 5276085 */
+ return (*dest = value);
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-4.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc-gc-weak-4.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-4.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc-gc-weak-4.mm Thu Aug 2 20:00:37 2007
@@ -1,9 +1,8 @@
-/* APPLE LOCAL file radar 4591756 */
+/* APPLE LOCAL file radar 4591756 - radar 5276085 */
/* A run-time test for insertion of read barriers for __weak objects. */
+/* Test enhanced for radar 5276085 to test weak array of ivars. */
/* { dg-do run { target *-*-darwin* } } */
/* { dg-options "-framework Foundation -fobjc-gc" } */
-/* TEMPORARY SKIP! UNTIL RADAR 4914392 is fixed */
-/* { dg-skip-if "" { *-*-darwin* } { "-m64" } { "" } } */
// Weak Write Barriers
@@ -21,7 +20,7 @@
}
Reads, Writes;
-static
+static
id objc_assign_weak(id value, id *location) {
Writes.encountered++;
return value;
@@ -36,6 +35,8 @@
@interface TestObject : NSObject {
__weak id ivar;
+ __weak id arr_ivar[3];
+ __weak id another_arr_ivar[3][2];
}
- (int)doTest; // error count
@end
@@ -45,12 +46,30 @@
@implementation TestObject
- (int)writeIvar {
+ int i,j;
++Writes.expected;
ivar = self;
if (Writes.expected != Writes.encountered) {
printf("writeIvar failed\n");
return 1;
}
+ Writes.expected += 3;
+ for (i=0; i < 3; i++)
+ arr_ivar[i] = self;
+ if (Writes.expected != Writes.encountered) {
+ printf("writeIvar failed\n");
+ return 1;
+ }
+
+ Writes.expected += 6;
+ for (i=0; i < 3; i++)
+ for (j=0; j < 2; j++)
+ another_arr_ivar[i][j] = self;
+ if (Writes.expected != Writes.encountered) {
+ printf("writeIvar failed\n");
+ return 1;
+ }
+
return 0;
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-const-str-64bit-1.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc2-const-str-64bit-1.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-const-str-64bit-1.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-const-str-64bit-1.mm Thu Aug 2 20:00:37 2007
@@ -1,12 +0,0 @@
-/* APPLE LOCAL file 4719165 */
-/* Test for new way of representing constant string structure */
-/* { dg-options "-fnext-runtime -m64 -fobjc-abi-version=2" } */
-/* { dg-do compile { target powerpc-*-darwin* } } */
-
- at interface NSConstantString { id isa; const char *c; int l; } @end
- at implementation NSConstantString @end
-
-int main() {
- return (int)(long)@"foo";
-}
-/* { dg-final { scan-assembler "LC1:\n\t.quad\t_OBJC_CLASS_\\\$_NSConstantString" } } */
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-ivar-test-2.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc2-ivar-test-2.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-ivar-test-2.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-ivar-test-2.mm Thu Aug 2 20:00:37 2007
@@ -1,7 +1,7 @@
/* APPLE LOCAL file radar 4951615 */
/* Check that @protect ivar's offset variable does not have 'private extern'
visibility */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
/* { dg-do compile { target *-*-darwin* } } */
#import <Foundation/Foundation.h>
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-none-fragile-ivar-use.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc2-none-fragile-ivar-use.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-none-fragile-ivar-use.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-none-fragile-ivar-use.mm Thu Aug 2 20:00:37 2007
@@ -1,6 +1,6 @@
/* APPLE LOCAL file radar 4954480 */
/* Check for illegal use of 'ivar' in objc2 abi */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface LKLayerTransaction
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-package-ivar-1.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/objc2-package-ivar-1.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-package-ivar-1.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/objc2-package-ivar-1.mm Thu Aug 2 20:00:37 2007
@@ -1,6 +1,6 @@
/* APPLE LOCAL file radar 5040740 */
/* Test use of new @package ivars. */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface INTF
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/property-neg-4.mm
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/obj-c%2B%2B.dg/property-neg-4.mm?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/property-neg-4.mm (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/obj-c++.dg/property-neg-4.mm Thu Aug 2 20:00:37 2007
@@ -7,14 +7,14 @@
@interface Person
{
}
- at property char *fullName;
+ at property const char *fullName;
+ (void) testClass;
@end
@implementation Person
@dynamic fullName;
+ (void) testClass {
- self.fullName = "MyName"; /* { dg-error "request for member \\'fullName\\' in \\'self\\'" } */
+ self.fullName = "MyName"; /* { dg-error "accessing unknown" } */
}
@end
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/const-cfstring-7.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/const-cfstring-7.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/const-cfstring-7.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/const-cfstring-7.m Thu Aug 2 20:00:37 2007
@@ -1,6 +1,6 @@
/* APPLE LOCAL file 4493912 */
/* Test that CFString.length is (long) 64 bit with -m64. */
-/* { dg-options "-fconstant-cfstrings -m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -fconstant-cfstrings -m64" } */
/* { dg-do compile { target powerpc*-*-darwin* } } */
#include <Foundation/NSString.h>
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/newproperty-deprecated-attr-1.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/newproperty-deprecated-attr-1.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/newproperty-deprecated-attr-1.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/newproperty-deprecated-attr-1.m Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 4712415 */
+/* APPLE LOCAL file radar 4712415 - radar 5285911 */
/* This program tests use of deprecated attribute on property. */
/* { dg-options "-fobjc-new-property -mmacosx-version-min=10.5" } */
/* { dg-do compile { target *-*-darwin* } } */
@@ -24,7 +24,6 @@
int main(int argc, char *argv[]) {
Bar *f = [Bar new];
- f.FooBar = 1; /* { dg-warning "\'FooBar\' is deprecated" } */
- /* { dg-warning "\'MySetter:\' is deprecated" "" { target *-*-* } 27 } */
+ f.FooBar = 1; /* { dg-warning "\'MySetter:\' is deprecated" } */
return f.FooBar; /* { dg-warning "\'FooBar\' is deprecated" } */
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-3.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-3.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-3.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-3.m Thu Aug 2 20:00:37 2007
@@ -3,6 +3,8 @@
/* { dg-do run { target *-*-darwin* } } */
/* { dg-options "-fnext-runtime -fobjc-gc" } */
+/* { dg-options "-fnext-runtime -fobjc-gc -mmacosx-version-min=10.3" { target powerpc*-*-darwin* } } */
+/* { dg-skip-if "" { powerpc*-*-darwin* } { "-m64" } { "" } } */
#include <objc/objc.h>
#include <stdio.h>
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-2.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-2.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-2.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-2.m Thu Aug 2 20:00:37 2007
@@ -21,7 +21,8 @@
}
static id objc_assign_weak(id value, id *dest) {
- return ((__weak id)*dest = value);
+ /* APPLE LOCAL radar 5276985 */
+ return (*dest = value);
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-3.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-3.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-3.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc-gc-weak-3.m Thu Aug 2 20:00:37 2007
@@ -1,9 +1,8 @@
-/* APPLE LOCAL file radar 4591756 */
+/* APPLE LOCAL file radar 4591756 - radar 5276085 */
/* A run-time test for insertion of read barriers for __weak objects. */
+/* Test enhanced for radar 5276085 to test weak array of ivars. */
/* { dg-do run { target *-*-darwin* } } */
/* { dg-options "-framework Foundation -fobjc-gc" } */
-/* TEMPORARY SKIP! UNTIL RADAR 4914392 is fixed */
-/* { dg-skip-if "" { *-*-darwin* } { "-m64" } { "" } } */
// Weak Write Barriers
@@ -36,6 +35,8 @@
@interface TestObject : NSObject {
__weak id ivar;
+ __weak id arr_ivar[3];
+ __weak id another_arr_ivar[3][2];
}
- (int)doTest; // error count
@end
@@ -45,12 +46,30 @@
@implementation TestObject
- (int)writeIvar {
+ int i,j;
++Writes.expected;
ivar = self;
if (Writes.expected != Writes.encountered) {
printf("writeIvar failed\n");
return 1;
}
+ Writes.expected += 3;
+ for (i=0; i < 3; i++)
+ arr_ivar[i] = self;
+ if (Writes.expected != Writes.encountered) {
+ printf("writeIvar failed\n");
+ return 1;
+ }
+
+ Writes.expected += 6;
+ for (i=0; i < 3; i++)
+ for (j=0; j < 2; j++)
+ another_arr_ivar[i][j] = self;
+ if (Writes.expected != Writes.encountered) {
+ printf("writeIvar failed\n");
+ return 1;
+ }
+
return 0;
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-1.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-1.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-1.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-1.m Thu Aug 2 20:00:37 2007
@@ -3,7 +3,7 @@
extracted from AppKit */
/* { dg-do run { target *-*-darwin* } } */
/* { dg-options "-mmacosx-version-min=10.5 -framework Foundation -fobjc-gc" } */
-/* { dg-skip-if "" { *-*-darwin* } { "-m64" } { "" } } */
+/* { dg-require-effective-target ilp32 } */
#include <Foundation/Foundation.h>
@@ -24,8 +24,7 @@
@implementation NSFileLocationComponent @end
-const char expected [] = {0x02, 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x10,
- 0x04, 0};
+const char expected [] = {0x02, 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x14,0};
int main()
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-2.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-2.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-2.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-ivar-layout-2.m Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* APPLE LOCAL file radar 5217964 */
+/* APPLE LOCAL file radar 5217964 - radar 5251019 */
/* Test that ivar layout bytestream info is generated as expected for weak as well
as strong layout. */
/* { dg-do run { target *-*-darwin* } } */
@@ -47,9 +47,9 @@
@implementation NSTableOptions
@end
-const char expected_strong [] = {0x0f, 0x01, 0x10, 0x01, 0xa0, 0x02, 0};
+const char expected_strong [] = {0x0f, 0x01, 0x11, 0xa2, 0x10, 0};
-const char expected_weak [] = {0xf0, 0x11, 0};
+const char expected_weak [] = {0xf0, 0x11, 0xe0, 0};
int main()
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-package-ivar-1.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-package-ivar-1.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-package-ivar-1.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/objc2-package-ivar-1.m Thu Aug 2 20:00:37 2007
@@ -1,6 +1,6 @@
/* APPLE LOCAL file radar 5040740 */
/* Test use of new @package ivars. */
-/* { dg-options "-m64" } */
+/* { dg-options "-mmacosx-version-min=10.5 -m64" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface INTF
{
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/property-neg-4.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/property-neg-4.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/property-neg-4.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/property-neg-4.m Thu Aug 2 20:00:37 2007
@@ -14,7 +14,7 @@
@implementation Person
@dynamic fullName;
+ (void) testClass {
- self.fullName = "MyName"; /* { dg-error "request for member \\'fullName\\' in something not a structure or union" } */
+ self.fullName = "MyName"; /* { dg-error "accessing unknown" } */
}
@end
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/stubify-1.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/stubify-1.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/stubify-1.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc.dg/stubify-1.m Thu Aug 2 20:00:37 2007
@@ -3,6 +3,8 @@
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-Os -mdynamic-no-pic" } */
+/* APPLE LOCAL radar 5297325 */
+/* { dg-require-effective-target ilp32 } */
typedef struct objc_object { } *id ;
int x = 41 ;
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-1.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-1.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-1.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-1.m Thu Aug 2 20:00:37 2007
@@ -1,3 +1,4 @@
+/* APPLE LOCAL file radar 5245963 */
/* Contributed by Nicola Pero - Fri Jun 4 03:16:17 BST 2004 */
/* Test that a protocol is equal to itself. */
#include <objc/Protocol.h>
@@ -10,7 +11,11 @@
{
Protocol *protocol = @protocol(Foo);
+# if ((MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5) && __NEXT_RUNTIME__)
+ if (!protocol_isEqual (protocol, protocol))
+#else
if (! [protocol isEqual: protocol])
+#endif
{
abort ();
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-2.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-2.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-2.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-2.m Thu Aug 2 20:00:37 2007
@@ -1,3 +1,4 @@
+/* APPLE LOCAL file radar 5245963 */
/* Contributed by Nicola Pero - Fri Jun 4 03:16:17 BST 2004 */
/* Test that protocols with different names are different. */
#include <objc/Protocol.h>
@@ -12,7 +13,11 @@
int main (void)
{
+# if ((MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5) && __NEXT_RUNTIME__)
+ if (protocol_isEqual (@protocol(Foo1), @protocol(Foo2)))
+#else
if ([@protocol(Foo1) isEqual: @protocol(Foo2)])
+#endif
{
abort ();
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-3.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-3.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-3.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-3.m Thu Aug 2 20:00:37 2007
@@ -1,3 +1,4 @@
+/* APPLE LOCAL file radar 5245963 */
/* Contributed by Nicola Pero - Fri Jun 4 03:16:17 BST 2004 */
/* Test that a protocol is not equal to nil. */
#include <objc/Protocol.h>
@@ -8,7 +9,11 @@
int main (void)
{
+# if ((MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5) && __NEXT_RUNTIME__)
+ if (protocol_isEqual (@protocol(Foo), nil))
+#else
if ([@protocol(Foo) isEqual: nil])
+#endif
{
abort ();
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-4.m
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-4.m?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-4.m (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/objc/execute/protocol-isEqual-4.m Thu Aug 2 20:00:37 2007
@@ -1,3 +1,4 @@
+/* APPLE LOCAL file radar 5245963 */
/* Contributed by David Ayers - Fri Jun 4 03:16:17 BST 2004 */
/* Test that a protocol is not equal to something which is not a protocol. */
#include <objc/Protocol.h>
@@ -9,7 +10,11 @@
int main (void)
{
/* A Protocol object should not be equal to a Class object. */
+# if ((MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5) && __NEXT_RUNTIME__)
+ if (protocol_isEqual (@protocol(Foo), [Protocol class]))
+#else
if ([@protocol(Foo) isEqual: [Protocol class]])
+#endif
{
abort ();
}
Modified: llvm-gcc-4.2/trunk/gcc/testsuite/treelang/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/testsuite/treelang/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/testsuite/treelang/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/gcc/testsuite/treelang/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/gcc/toplev.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/toplev.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/toplev.c (original)
+++ llvm-gcc-4.2/trunk/gcc/toplev.c Thu Aug 2 20:00:37 2007
@@ -265,12 +265,12 @@
/* LLVM LOCAL end */
-/* APPLE LOCAL begin -fast */
+/* APPLE LOCAL begin -fast or -fastf or -fastcp */
/* Nonzero if we should perform SPEC oriented optimizations. */
int flag_fast = 0;
int flag_fastf = 0;
int flag_fastcp = 0;
-/* APPLE LOCAL end -fast */
+/* APPLE LOCAL end -fast or -fastf or -fastcp */
/* Nonzero if structures and unions should be returned in memory.
Modified: llvm-gcc-4.2/trunk/gcc/tree-flow.h
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree-flow.h?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree-flow.h (original)
+++ llvm-gcc-4.2/trunk/gcc/tree-flow.h Thu Aug 2 20:00:37 2007
@@ -878,7 +878,6 @@
};
extern enum move_pos movement_possibility (tree);
-
/* The reasons a variable may escape a function. */
enum escape_type
{
Modified: llvm-gcc-4.2/trunk/gcc/tree-if-conv.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree-if-conv.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree-if-conv.c (original)
+++ llvm-gcc-4.2/trunk/gcc/tree-if-conv.c Thu Aug 2 20:00:37 2007
@@ -113,7 +113,8 @@
static bool if_convertible_bb_p (struct loop *, basic_block, basic_block);
static bool if_convertible_loop_p (struct loop *, bool);
static void add_to_predicate_list (basic_block, tree);
-static tree add_to_dst_predicate_list (struct loop * loop, basic_block, tree, tree,
+static tree add_to_dst_predicate_list (struct loop * loop, edge,
+ tree, tree,
block_stmt_iterator *);
static void clean_predicate_lists (struct loop *loop);
static basic_block find_phi_replacement_condition (struct loop *loop,
@@ -143,7 +144,6 @@
{
basic_block bb;
block_stmt_iterator itr;
- tree cond;
unsigned int i;
ifc_bbs = NULL;
@@ -163,11 +163,11 @@
return false;
}
- cond = NULL_TREE;
-
/* Do actual work now. */
for (i = 0; i < loop->num_nodes; i++)
{
+ tree cond;
+
bb = ifc_bbs [i];
/* Update condition using predicate list. */
@@ -191,7 +191,6 @@
basic_block bb_n = single_succ (bb);
if (cond != NULL_TREE)
add_to_predicate_list (bb_n, cond);
- cond = NULL_TREE;
}
}
@@ -275,12 +274,12 @@
/* Add new condition into destination's predicate list. */
/* If 'c' is true then TRUE_EDGE is taken. */
- add_to_dst_predicate_list (loop, true_edge->dest, cond,
+ add_to_dst_predicate_list (loop, true_edge, cond,
unshare_expr (c), bsi);
/* If 'c' is false then FALSE_EDGE is taken. */
c2 = invert_truthvalue (unshare_expr (c));
- add_to_dst_predicate_list (loop, false_edge->dest, cond, c2, bsi);
+ add_to_dst_predicate_list (loop, false_edge, cond, c2, bsi);
/* Now this conditional statement is redundant. Remove it.
But, do not remove exit condition! Update exit condition
@@ -565,7 +564,15 @@
/* ??? Check data dependency for vectorizer. */
/* What about phi nodes ? */
- for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
+ phi = phi_nodes (bb);
+
+ /* Clear aux field of incoming edges to a bb with a phi node. */
+ if (phi)
+ FOR_EACH_EDGE (e, ei, bb->preds)
+ e->aux = NULL;
+
+ /* Check statements. */
+ for (; phi; phi = PHI_CHAIN (phi))
if (!if_convertible_phi_p (loop, bb, phi))
return false;
@@ -602,13 +609,13 @@
existing condition. */
static tree
-add_to_dst_predicate_list (struct loop * loop, basic_block bb,
+add_to_dst_predicate_list (struct loop * loop, edge e,
tree prev_cond, tree cond,
block_stmt_iterator *bsi)
{
tree new_cond = NULL_TREE;
- if (!flow_bb_inside_loop_p (loop, bb))
+ if (!flow_bb_inside_loop_p (loop, e->dest))
return NULL_TREE;
if (prev_cond == boolean_true_node || !prev_cond)
@@ -629,6 +636,11 @@
if (tmp_stmts2)
bsi_insert_before (bsi, tmp_stmts2, BSI_SAME_STMT);
+ /* Add the condition to aux field of the edge. In case edge
+ destination is a PHI node, this condition will be ANDed with
+ block predicate to construct complete condition. */
+ e->aux = cond;
+
/* new_cond == prev_cond AND cond */
tmp = build2 (TRUTH_AND_EXPR, boolean_type_node,
unshare_expr (prev_cond), cond);
@@ -636,22 +648,30 @@
bsi_insert_before (bsi, tmp_stmt, BSI_SAME_STMT);
new_cond = TREE_OPERAND (tmp_stmt, 0);
}
- add_to_predicate_list (bb, new_cond);
+ add_to_predicate_list (e->dest, new_cond);
return new_cond;
}
-/* During if-conversion aux field from basic block is used to hold predicate
- list. Clean each basic block's predicate list for the given LOOP. */
+/* During if-conversion aux field from basic block structure is used to hold
+ predicate list. Clean each basic block's predicate list for the given LOOP.
+ Also clean aux field of succesor edges, used to hold true and false
+ condition from conditional expression. */
static void
clean_predicate_lists (struct loop *loop)
{
basic_block *bb;
unsigned int i;
+ edge e;
+ edge_iterator ei;
+
bb = get_loop_body (loop);
for (i = 0; i < loop->num_nodes; i++)
- bb[i]->aux = NULL;
-
+ {
+ bb[i]->aux = NULL;
+ FOR_EACH_EDGE (e, ei, bb[i]->succs)
+ e->aux = NULL;
+ }
free (bb);
}
@@ -664,13 +684,12 @@
basic_block bb, tree *cond,
block_stmt_iterator *bsi)
{
- basic_block first_bb = NULL;
- basic_block second_bb = NULL;
+ edge first_edge, second_edge;
tree tmp_cond, new_stmts;
gcc_assert (EDGE_COUNT (bb->preds) == 2);
- first_bb = (EDGE_PRED (bb, 0))->src;
- second_bb = (EDGE_PRED (bb, 1))->src;
+ first_edge = EDGE_PRED (bb, 0);
+ second_edge = EDGE_PRED (bb, 1);
/* Use condition based on following criteria:
1)
@@ -691,42 +710,55 @@
S3: x = (c == d) ? b : a;
S3 is preferred over S1 and S2*, Make 'b' first_bb and use
- its condition.
+ its condition.
4) If pred B is dominated by pred A then use pred B's condition.
See PR23115. */
/* Select condition that is not TRUTH_NOT_EXPR. */
- tmp_cond = first_bb->aux;
+ tmp_cond = (first_edge->src)->aux;
if (TREE_CODE (tmp_cond) == TRUTH_NOT_EXPR)
{
- basic_block tmp_bb;
- tmp_bb = first_bb;
- first_bb = second_bb;
- second_bb = tmp_bb;
+ edge tmp_edge;
+
+ tmp_edge = first_edge;
+ first_edge = second_edge;
+ second_edge = tmp_edge;
}
/* Check if FIRST_BB is loop header or not and make sure that
FIRST_BB does not dominate SECOND_BB. */
- if (first_bb == loop->header
- || dominated_by_p (CDI_DOMINATORS, second_bb, first_bb))
- {
- tmp_cond = second_bb->aux;
- if (TREE_CODE (tmp_cond) == TRUTH_NOT_EXPR)
- {
- /* Select non loop header condition but do not switch basic blocks. */
- *cond = invert_truthvalue (unshare_expr (tmp_cond));
- }
+ if (first_edge->src == loop->header
+ || dominated_by_p (CDI_DOMINATORS,
+ second_edge->src, first_edge->src))
+ {
+ *cond = (second_edge->src)->aux;
+
+ /* If there is a condition on an incoming edge,
+ AND it with the incoming bb predicate. */
+ if (second_edge->aux)
+ *cond = build2 (TRUTH_AND_EXPR, boolean_type_node,
+ *cond, second_edge->aux);
+
+ if (TREE_CODE (*cond) == TRUTH_NOT_EXPR)
+ /* We can be smart here and choose inverted
+ condition without switching bbs. */
+ *cond = invert_truthvalue (*cond);
else
- {
- /* Select non loop header condition. */
- first_bb = second_bb;
- *cond = first_bb->aux;
- }
+ /* Select non loop header bb. */
+ first_edge = second_edge;
}
else
- /* FIRST_BB is not loop header */
- *cond = first_bb->aux;
+ {
+ /* FIRST_BB is not loop header */
+ *cond = (first_edge->src)->aux;
+
+ /* If there is a condition on an incoming edge,
+ AND it with the incoming bb predicate. */
+ if (first_edge->aux)
+ *cond = build2 (TRUTH_AND_EXPR, boolean_type_node,
+ *cond, first_edge->aux);
+ }
/* Create temp. for the condition. Vectorizer prefers to have gimple
value as condition. Various targets use different means to communicate
@@ -746,7 +778,7 @@
gcc_assert (*cond);
- return first_bb;
+ return first_edge->src;
}
@@ -777,10 +809,6 @@
/* Find basic block and initialize iterator. */
bb = bb_for_stmt (phi);
- new_stmt = NULL_TREE;
- arg_0 = NULL_TREE;
- arg_1 = NULL_TREE;
-
/* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
if (EDGE_PRED (bb, 1)->src == true_bb)
{
Modified: llvm-gcc-4.2/trunk/gcc/tree-ssa-address.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree-ssa-address.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree-ssa-address.c (original)
+++ llvm-gcc-4.2/trunk/gcc/tree-ssa-address.c Thu Aug 2 20:00:37 2007
@@ -569,7 +569,9 @@
struct affine_tree_combination *addr)
{
tree mem_ref, tmp;
- tree addr_type = build_pointer_type (type), atype;
+ /* APPLE LOCAL begin mainline 2007-03-08 4993982 */
+ tree atype;
+ /* APPLE LOCAL end mainline 2007-03-08 4993982 */
struct mem_address parts;
addr_to_parts (addr, &parts);
@@ -597,18 +599,30 @@
if (parts.symbol)
{
- tmp = fold_convert (addr_type,
- build_addr (parts.symbol, current_function_decl));
+ /* APPLE LOCAL begin mainline 2007-03-08 4993982 */
+ tmp = build_addr (parts.symbol, current_function_decl);
+ gcc_assert (is_gimple_val (tmp));
+ /* APPLE LOCAL end mainline 2007-03-08 4993982 */
/* Add the symbol to base, eventually forcing it to register. */
if (parts.base)
{
+ /* APPLE LOCAL begin mainline 2007-03-08 4993982 */
+ gcc_assert (tree_ssa_useless_type_conversion_1
+ (sizetype, TREE_TYPE (parts.base)));
+ /* APPLE LOCAL end mainline 2007-03-08 4993982 */
+
if (parts.index)
- parts.base = force_gimple_operand_bsi (bsi,
- fold_build2 (PLUS_EXPR, addr_type,
- fold_convert (addr_type, parts.base),
- tmp),
- true, NULL_TREE);
+ /* APPLE LOCAL begin mainline 2007-03-08 4993982 */
+ {
+ atype = TREE_TYPE (tmp);
+ parts.base = force_gimple_operand_bsi (bsi,
+ fold_build2 (PLUS_EXPR, atype,
+ fold_convert (atype, parts.base),
+ tmp),
+ true, NULL_TREE);
+ }
+ /* APPLE LOCAL end mainline 2007-03-08 4993982 */
else
{
parts.index = parts.base;
Modified: llvm-gcc-4.2/trunk/gcc/tree-ssa-loop-niter.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree-ssa-loop-niter.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree-ssa-loop-niter.c (original)
+++ llvm-gcc-4.2/trunk/gcc/tree-ssa-loop-niter.c Thu Aug 2 20:00:37 2007
@@ -1747,6 +1747,12 @@
{
bb = bbs[i];
+ /* If BB is not executed in each iteration of the loop, we cannot
+ use the operations in it to infer reliable upper bound on the
+ # of iterations of the loop. */
+ if (!dominated_by_p (CDI_DOMINATORS, loop->latch, bb))
+ continue;
+
for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
{
tree stmt = bsi_stmt (bsi);
@@ -2117,4 +2123,3 @@
loop->estimated_nb_iterations
= simplify_replace_tree (loop->estimated_nb_iterations, name, val);
}
-
Modified: llvm-gcc-4.2/trunk/gcc/tree.def
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree.def?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree.def (original)
+++ llvm-gcc-4.2/trunk/gcc/tree.def Thu Aug 2 20:00:37 2007
@@ -855,10 +855,10 @@
STRING_CST for the instruction (e.g., "mov x, y"). ASM_OUTPUTS,
ASM_INPUTS, and ASM_CLOBBERS represent the outputs, inputs, and clobbers
for the statement. */
-/* APPLE LOCAL begin CW asm blocks. */
+/* APPLE LOCAL begin CW asm blocks */
/* One additional field ASM_USES for uses. */
DEFTREECODE (ASM_EXPR, "asm_expr", tcc_statement, 5)
-/* APPLE LOCAL end CW asm blocks. */
+/* APPLE LOCAL end CW asm blocks */
/* Variable references for SSA analysis. New SSA names are created every
time a variable is assigned a new value. The SSA builder uses SSA_NAME
Modified: llvm-gcc-4.2/trunk/gcc/tree.h
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/tree.h?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/tree.h (original)
+++ llvm-gcc-4.2/trunk/gcc/tree.h Thu Aug 2 20:00:37 2007
@@ -1037,12 +1037,6 @@
call optimizations. */
#define CALL_EXPR_TAILCALL(NODE) (CALL_EXPR_CHECK(NODE)->common.addressable_flag)
-/* APPLE LOCAL begin C* property (Radar 4436866) */
-/* Set on a CALL_EXPR if it is for call to a getter function represented by an
- objective-c property declaration. */
-#define CALL_EXPR_OBJC_PROPERTY_GETTER(NODE) (CALL_EXPR_CHECK(NODE)->common.deprecated_flag)
-/* APPLE LOCAL end C* property (Radar 4436866) */
-
/* Used as a temporary field on a CASE_LABEL_EXPR to indicate that the
CASE_LOW operand has been processed. */
#define CASE_LOW_SEEN(NODE) \
Modified: llvm-gcc-4.2/trunk/gcc/version.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/version.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/version.c (original)
+++ llvm-gcc-4.2/trunk/gcc/version.c Thu Aug 2 20:00:37 2007
@@ -9,16 +9,7 @@
the revision of your modified compiler. */
/* APPLE LOCAL begin Apple version */
-/* When updating this string:
- - For each internal build, increment the build number.
- - When merging from the FSF, delete any (experimental) or (prerelease).
- Apple doesn't mark its GCC versions as 'prerelease', because a released
- compiler will be identical to the last prerelease compiler and it
- makes no sense to mark released compilers as 'prerelease'.
- - There are other scripts that search for first word of the string
- to get version number string. Do not use new line.
-*/
-#define VERSUFFIX "(llvm) (Based on Apple Inc. build 5525)"
+#define VERSUFFIX "(llvm) (Based on Apple Inc. build 5530)"
/* APPLE LOCAL end Apple version */
/* This is the location of the online document giving instructions for
Modified: llvm-gcc-4.2/trunk/include/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/include/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/include/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/include/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/intl/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/intl/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/intl/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/intl/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/libcpp/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/libcpp/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/libcpp/makedepend.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/makedepend.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/makedepend.c (original)
+++ llvm-gcc-4.2/trunk/libcpp/makedepend.c Thu Aug 2 20:00:37 2007
@@ -27,12 +27,12 @@
#include "getopt.h"
#include "mkdeps.h"
-/* APPLE LOCAL begin CW asm blocks -sshebs */
+/* APPLE LOCAL begin CW asm blocks */
/* Dummies needed because we use them from cpplib, yuck. */
int flag_iasm_blocks;
int iasm_state;
int iasm_in_operands;
-/* APPLE LOCAL end CW asm blocks -sshebs */
+/* APPLE LOCAL end CW asm blocks */
const char *progname;
const char *vpath;
Modified: llvm-gcc-4.2/trunk/libcpp/po/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,16 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
+2007-07-18 Mark Mitchell <mark at codesourcery.com>
+
+ * cpplib.pot: Regenerate.
+
+2007-06-26 Joseph S. Myers <joseph at codesourcery.com>
+
+ * be.po, ca.po, da.po, de.po, el.po, es.po, fr.po, ja.po, nl.po,
+ rw.po, sv.po, tr.po, vi.po, zh_CN.po, zh_TW.po: Update.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/libcpp/po/be.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/be.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/be.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/be.po Thu Aug 2 20:00:37 2007
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: gcc 3.1\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2002-05-17 15:54+0200\n"
"Last-Translator: Ales Nyakhaychyk <nyakhaychyk at i18n.linux.by>\n"
"Language-Team: Belarusian <i18n at tut.by>\n"
@@ -149,213 +149,227 @@
msgid "failure to convert %s to %s"
msgstr ""
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr ""
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr ""
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr ""
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr ""
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr ""
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr ""
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr ""
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr ""
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr ""
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr ""
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr ""
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr ""
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr ""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr ""
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr ""
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr ""
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr ""
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr ""
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr ""
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr ""
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr ""
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr ""
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr ""
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "неÑÑÑаÑÑÐ½Ñ ÑнÑÑÑÑлÑзаÑаÑ"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr ""
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr ""
-#: directives.c:1115
+#: directives.c:1107
#, fuzzy, c-format
msgid "#pragma %s %s is already registered"
msgstr "ÐÐ»Ð°Ñ \"%s\" Ñжо ÑÑнÑе"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr ""
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr ""
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr ""
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr ""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr ""
-#: directives.c:1439
+#: directives.c:1427
#, fuzzy, c-format
msgid "cannot find source file %s"
msgstr "не Ð¼Ð°Ð³Ñ Ð·Ð½Ð°Ð¹ÑÑÑ ÐºÑÑнÑÑÑ %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr ""
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr ""
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr ""
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr ""
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr ""
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr ""
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr ""
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr ""
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr ""
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr ""
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr ""
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr ""
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr ""
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr ""
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr ""
@@ -382,164 +396,169 @@
msgid "%s: %s"
msgstr ""
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr ""
-#: expr.c:212
+#: expr.c:223
#, fuzzy, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "`%E' - неÑÑÑаÑÑÐ½Ð°Ñ Ð½ÑзÑÐ¼ÐµÐ½Ð½Ð°Ñ ÑÑÐ¿Ñ string"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr ""
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr ""
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr ""
-#: expr.c:240
+#: expr.c:251
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "`%E' - неÑÑÑаÑÑÐ½Ð°Ñ Ð½ÑзÑÐ¼ÐµÐ½Ð½Ð°Ñ ÑÑÐ¿Ñ string"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr ""
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr ""
+
+#: expr.c:281
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "`%E' - неÑÑÑаÑÑÐ½Ð°Ñ Ð½ÑзÑÐ¼ÐµÐ½Ð½Ð°Ñ ÑÑÐ¿Ñ string"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr ""
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr ""
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr ""
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr ""
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr ""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr ""
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr ""
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr ""
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr ""
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr ""
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr ""
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, fuzzy, c-format
msgid "missing binary operator before token \"%s\""
msgstr "пÑапÑÑÑан пÑабел паÑÐ»Ñ Ð½ÑмаÑа \"%.*s\""
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr ""
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr ""
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr ""
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr ""
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr ""
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr ""
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr ""
-#: expr.c:836
+#: expr.c:853
#, fuzzy, c-format
msgid "impossible operator '%u'"
msgstr "немагÑÑÐ¼Ñ Ð°Ð¿ÑÑаÑÐ°Ñ '%s'"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr ""
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr ""
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr ""
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr ""
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr ""
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr ""
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr ""
@@ -579,36 +598,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr ""
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr ""
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr ""
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr ""
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr ""
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr ""
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr ""
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr ""
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr ""
@@ -667,27 +686,32 @@
msgid "null character(s) preserved in literal"
msgstr ""
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "пÑапÑÑÑан завÑÑÑаÑÑÑ ÑÑмвал %c"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr ""
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "незавеÑÑанÑÑ ÐºÐ°Ð¼ÐµÐ½ÑаÑÑÑ"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr ""
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr ""
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr ""
-#: lex.c:1331
+#: lex.c:1333
#, fuzzy, c-format
msgid "unspellable token %s"
msgstr "Ð½ÐµÐ¼Ð°Ð³Ñ Ð°Ð´ÑÑнÑÑÑ Ñайл \"%s\""
@@ -704,116 +728,121 @@
" from %s:%u"
msgstr ""
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr ""
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr ""
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "не Ð¼Ð°Ð³Ñ Ð·Ð½Ð°Ð¹ÑÑÑ ÐºÑÑнÑÑÑ %s\n"
+
+#: macro.c:253
#, fuzzy
msgid "could not determine date and time"
msgstr "ÐемагÑÑма адÑÑнÑÑÑ Ñайл з дадзенÑÐ¼Ñ %s.\n"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr ""
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr ""
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr ""
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr ""
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr ""
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr ""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr ""
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr ""
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr ""
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr ""
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr ""
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr ""
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr ""
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr ""
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr ""
-#: macro.c:1452
+#: macro.c:1482
#, fuzzy
msgid "missing whitespace after the macro name"
msgstr "пÑапÑÑÑан пÑабел паÑÐ»Ñ Ð½ÑмаÑа \"%.*s\""
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr ""
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr ""
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr ""
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr ""
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr ""
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr ""
@@ -1228,9 +1257,6 @@
#~ msgid "output filename specified twice"
#~ msgstr "не Ð·Ð°Ð´Ð°Ð´Ð·ÐµÐ½Ñ ÑваÑ
одзÑÑÑÑ ÑайлÑ"
-#~ msgid "missing terminating %c character"
-#~ msgstr "пÑапÑÑÑан завÑÑÑаÑÑÑ ÑÑмвал %c"
-
#, fuzzy
#~ msgid "unknown string token %s\n"
#~ msgstr "невÑÐ´Ð¾Ð¼Ð°Ñ Ð½Ð°Ð·Ð²Ð° ÑÑгÑÑÑÑа: %s\n"
@@ -1291,10 +1317,6 @@
#~ msgid "extraneous argument to `%s' option"
#~ msgstr "аÑгÑÐ¼ÐµÐ½Ñ Ð´Ð»Ñ \"%s\" пÑапÑÑÑан"
-#, fuzzy
-#~ msgid "could not find specs file %s\n"
-#~ msgstr "не Ð¼Ð°Ð³Ñ Ð·Ð½Ð°Ð¹ÑÑÑ ÐºÑÑнÑÑÑ %s\n"
-
#~ msgid "-pipe not supported"
#~ msgstr "-pipe не падÑÑÑмлÑваеÑÑа"
Modified: llvm-gcc-4.2/trunk/libcpp/po/ca.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/ca.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/ca.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/ca.po Thu Aug 2 20:00:37 2007
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: cpplib-4.0.1\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2005-11-25 22:56+0100\n"
"Last-Translator: Mateu Gilles <gilles at mateu.org>\n"
"Language-Team: Catalan <ca at dodds.net>\n"
@@ -153,213 +153,227 @@
msgid "failure to convert %s to %s"
msgstr "fallada convertint %s a %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "elements superflus al final de la directiva #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s és una extenció del GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "es suggereix no usar #elif en C tradicional"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "C tradicional ignora #%s amb el # indentat"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "es suggereix ocultar #%s del C tradicional amb el # indentat"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "l'incrustació d'una directiva entre arguments de macro no és portable"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "la directiva d'estil de línia és una extenció del GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "directiva de preprocessament #%s invàlida"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" no es pot usar com un nom de macro"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "no es pot usar \"%s\" com un nom de macro perquè és un operador en C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "no es va donar un nom de macro en la directiva #%s"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "els noms de macro han de ser identificadors"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "esborrant la definició de \"%s\""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "falta el caràcter de terminació >"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s espera \"NOM_DE_FITXER\" o <NOM_DE_FITXER>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "nom de fitxer buit en #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include niat amb massa profunditat"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next en el fitxer font primari"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "indicador \"%s\" invàlid en la directiva de línia"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\" desprès de #line no és un enter positiu"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "nombre de línia fora de rang"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" no és un nom de fitxer vàlid"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\" desprès de # no és un enter positiu"
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "directiva #ident invàlida"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "desant \"%s\" com a pragma i espai de noms de pragma"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "desant \"%s\" com a pragma i espai de noms de pragma"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "ja s'ha desat #pragma %s %s"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "ja s'ha desat #pragma %s"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma una vegada en el fitxer principal"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "directiva #pragma de GCC enverinada invàlida"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "enverinant la macro existent \"%s\""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header ignorat fora del fitxer d'inclusió"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "no es pot trobar la font %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "el fitxer actual és més vell que %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma pren una cadena literal entre parèntesis"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else sense #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else després de #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "el condicional va començar aquí"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif sense #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif després de #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif sense #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "falta \"(\" abans del predicat"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "falta \")\" per a completar la resposta"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "el predicat de la resposta està buit"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "afirmació sense predicat"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "el predicat ha de ser un identificador"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" reafirmat"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "#%s sense acabar"
@@ -385,164 +399,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "nombre amb massa punts decimals"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "dígit \"%c\" invàlid en la constant octal"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "ús d'una constant de coma flotant hexadecimal C99"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "exponent no té dígits"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "la constant de coma flotant hexadecimal requereix un exponent"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "sufix \"%.*s\" invàlid en la constant de coma flotant"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "el C tradicional rebutja el sufix \"%.*s\""
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "sufix \"%.*s\" invàlid en la constant de coma flotant"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "sufix \"%.*s\" invàlid en constant entera"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "ús d'una constant entera long long C99"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "les constants imaginàries són una extensió d'el GCC"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "la constant entera és massa gran pel seu tipus"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "la constant entera és tan gran que és unsigned"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "\")\" faltant després de \"defined\""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "l'operador \"defined\" requereix un identificador"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\" és un element alternatiu per a \"%s\" en C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "aquest ùs de \"defined\" podria no ser portable"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "constant de coma flotant en l'expressió del preprocessador"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "nombre imaginari en l'expressió del preprocessador"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" no és definit"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "operador binari faltant abans de l'element \"%s\""
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "l'element \"%s\" no és vàlid en les expressions del preprocesador"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "expressión faltant entre \"(\" i \")\""
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if sense expressió"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "l'operador \"%s\" no té operant de dreta"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "l'operador \"%s\" no té operant d'esquera"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " \":\" sense \"?\" precedent"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "pila desequilibrada en #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "operador \"%u\" impossible"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "\")\" faltant en l'expressió"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr " \"?\" sense el \":\" següent"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "desbordament d'enter en l'expressió del preprocessador"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "\"(\" faltant en l'expressió"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "l'operant esquera de \"%s\" canvia el signe quan és promogut"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "l'operant dreta de \"%s\" canvia el signe quan és promogut"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "C tradicional rebutja l'operador unari més"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "operador coma en operant de #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "divisió per zero en #if"
@@ -582,36 +601,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Múltiples guàrdies d'inclusió poden ser útils per a:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t ha de ser d'un tipus unsigned"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "l'aritmètica del preprocesador té una precisió màxima de %lu bits; l'objectiu requereix %lu bits"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "l'aritmètica de CPP ha de ser almenys tan precisa com un int de l'objectiu"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "el char de l'objectiu té menys de 8 bits d'ampliaria"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "el wchar_t de l'objectiu és més estret qu'el char de l'objectiu"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "el int de l'objectiu és més estret qu'el char de l'objectiu"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "el half-integer de CPP és més estret que el caràcter de CPP"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP no pot manejar constants de caràcter amples més enllà de %lu bits en aquest ordinador, però l'objectiu requereix %lu bits"
@@ -670,27 +689,32 @@
msgid "null character(s) preserved in literal"
msgstr "caràcter(es) nul(s) preservats en la literal"
-#: lex.c:838
+#: lex.c:650
+#, fuzzy, c-format
+msgid "missing terminating %c character"
+msgstr "falta el caràcter de terminació >"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "no hi ha caràcter de fi de línia al final del fitxer"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "comentari sense acabar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "els comentaris d'estil C++ no són permesos en ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(això es reportarà solament una vegada per cada fitxer d'entrada)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "comentari en múltiples línies"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "Element %s impronunciable"
@@ -709,114 +733,119 @@
",\n"
" dès de %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "no s'usa la macro \"%s\""
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "macro interna \"%s\" invàlida"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "no es pot determinar la data i l'hora"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "no es pot determinar la data i l'hora"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "cadena literal invàlida, s'ignora el \"\\\" final"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "enganxar \"%s\" i \"%s\" no dóna un element de preprocessament vàlid"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 requereix que la resta dels arguments sigui usat"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "la macro \"%s\" requereix %u arguments, però només %u passats"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "la macro \"%s\" va rebre %u arguments, però en va prendre solament %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "llista d'arguments sense acabar a l'invocar la macro \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "la funció de macro \"%s\" s'ha d'usar amb arguments en C tradicional"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "paràmetre de macro \"%s\" duplicat"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" podria faltar en la llista de paràmetre de macro"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "els paràmetres de macro han de ser separats per comes"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "falta el nom del paràmetre"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "els macros variadic anònims es van introduir en C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C no permet macros variadic nomenats"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "\")\" faltant en la llista de paràmetres de macro"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 requereix espais en blanc després del nom de macro"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "espais en blanc faltant després del nom de macro"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "\"#\" no és seguit per un paràmetre de macro"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "\"##\" no pot apareixer en o al final d'una expansió de macro"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" re-definit"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "aquesta és la ubicació de la definició prèvia"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "l'argument de macro \"%s\" hauria de ser convertit en cadena en C traditional"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "tipus de hash %d invàlid en cpp_macro_definition"
Modified: llvm-gcc-4.2/trunk/libcpp/po/cpplib.pot
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/cpplib.pot?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/cpplib.pot (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/cpplib.pot Thu Aug 2 20:00:37 2007
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"POT-Creation-Date: 2007-07-18 21:18-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
Modified: llvm-gcc-4.2/trunk/libcpp/po/da.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/da.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/da.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/da.po Thu Aug 2 20:00:37 2007
@@ -128,7 +128,7 @@
msgstr ""
"Project-Id-Version: gcc 3.3\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2003-05-25 18:00+0200\n"
"Last-Translator: Ole Laursen <olau at hardworking.dk>\n"
"Language-Team: Danish <dansk at klid.dk>\n"
@@ -275,213 +275,227 @@
msgid "failure to convert %s to %s"
msgstr "kunne ikke konvertere '%E' til '%T'"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "ekstra symboler i slutningen af #%s-direktiv"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s er en GCC-udvidelse"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "foreslår undladelse af brug af #elif i traditionel C"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "traditionel C ignorerer #%s når '#' er indrykket"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "foreslår at skjule #%s fra traditionel C vha. indrykket '#'"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "indlejring af et direktiv inden i makroparametre er ikke portabelt"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "linjestilsdirektiv er en GCC-udvidelse"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "ugyldigt præprocessordirektiv #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" kan ikke bruges som makronavn"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\" kan ikke bruges som et makronavn da det er en operator i C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "intet makronavn angivet i direktivet #%s"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "makronavne skal være kaldenavne"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "glemmer definitionen af \"%s\""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "manglende afsluttende '>'-tegn"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s forventer \"FILNAVN\" eller <FILNAVN>"
-#: directives.c:736
+#: directives.c:727
#, fuzzy, c-format
msgid "empty filename in #%s"
msgstr "tomt filnavn i #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include indlejret for dybt"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next i den primære kildekodefil"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "ugyldigt flag \"%s\" i linjedirektiv"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\" efter #line er ikke et positivt heltal"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "linjenummer er uden for det gyldige interval"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" er ikke et ugyldigt filnavn"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\" efter # er ikke et positivt heltal"
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "ugyldigt #ident-direktiv"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "registrerer \"%s\" som både et pragma og som et pragmanavnerum"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "registrerer \"%s\" som både et pragma og som et pragmanavnerum"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s er allerede registreret"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s er allerede registreret"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "'#pragma once' i hovedfil"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "ugyldigt #pragma GCC poison-direktiv"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "forgifter eksisterende makro \"%s\""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "'#pragma system_header' ignoreret uden for inkluderingsfil"
-#: directives.c:1439
+#: directives.c:1427
#, fuzzy, c-format
msgid "cannot find source file %s"
msgstr "kan ikke finde kilden %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "aktuel fil er ældre end %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma tager en strengkonstant med paranteser omkring"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else uden #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else efter #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "betingelsen begyndte her"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif uden #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif efter #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif uden #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "manglende '(' efter udsagn"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "manglende ')' til at fuldføre svar"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "udsagnets svar et tomt"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "postulat uden udsagn"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "udsagn skal være et kaldenavn"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" genpostuleret"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "uafsluttet #%s"
@@ -508,165 +522,170 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "for mange decimalkommaer i tal"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "ugyldig ciffer \"%c\" i oktal konstant"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "brug af C99 hexadecimal kommatalskonstant"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "der er ingen cifre i eksponent"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "hexadecimal kommatalskonstant skal have en eksponent"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "ugyldig endelse \"%.*s\" i kommatalskonstant"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "traditionel C tillader ikke endelsen \"%.*s\""
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "ugyldig endelse \"%.*s\" i kommatalskonstant"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "ugyldig endelse \"%.*s\" i heltalskonstant"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "brug af ISO C99 long long-heltalskonstanter"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "imaginære konstanter er en GCC-udvidelse"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "heltalskonstanten er for stor for dens type"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "heltalskonstanten er så stor at den er unsigned"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "manglende ')' efter \"defined\""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "operatoren \"defined\" kræver et kaldenavn"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\" er et alternativt symbol for \"%s\" i C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "denne brug af \"defined\" er muligvis ikke portabel"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "kommatalskonstant i præprocessorudtryk"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "imaginært tal i præprocessorudtryk"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" er ikke defineret"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "manglende binær operator før symbolet \"%s\""
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "symbolet \"%s\" er ikke gyldigt i præprocessorudtryk"
-#: expr.c:753
+#: expr.c:770
#, fuzzy
msgid "missing expression between '(' and ')'"
msgstr "tomt udtryk mellem '(' og ')'"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if uden noget udtryk"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "operatoren '%s' har ikke nogen højre operand"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "operatoren '%s' har ikke nogen venstre operand"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " ':' uden forudgående '?'"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "uafbalanceret stak i #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "umulig operator '%u'"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "manglende ')' i udtryk"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "'?' uden efterfølgende ':'"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "heltallet løber over i præprocessorudtrykket"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "manglende '(' i udtryk"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "den venstre operand til \"%s\" ændrer fortegn ved forfremmelse"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "den højre operand til \"%s\" ændrer fortegn ved forfremmelse"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "traditionel C tillader ikke operatoren unær plus"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "kommeoperator i en operand til #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "division med nul i #if"
@@ -706,36 +725,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Flere inkluderingsvagter kan være nyttige til:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t skal være en unsigned type"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "præprocessorberegning har en maksimal præcision på %lu bit; målarkitektur kræver %lu bit"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP-beregning skal være mindst lige så præcis som en målarkitekturs int"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "målarkitekturs char er mindre end 8 bit bred"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "målarkitekturs wchar_t er mindre end målarkitekturs char"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "målarkitekturs int er mindre end målarkitekturs char"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP-halvheltal er mindre end CPP-tegn"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP på denne vært kan ikke håndtere bredtegnkonstanter over %lu bit, men målarkitekturen kræver %lu bit"
@@ -794,27 +813,32 @@
msgid "null character(s) preserved in literal"
msgstr "nultegn bevaret i strengkonstant"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "manglende afsluttende '%c'-tegn"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "ingen linjeskift ved slutningen af filen"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "uafsluttet kommentar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "kommentarer i C++-stil er ikke tilladt i ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(dette rapporteres kun en enkelt gang per inddatafil)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "flerlinjers kommentar"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "symbol %s kan ikke staves"
@@ -833,116 +857,121 @@
",\n"
" af %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "makroen \"%s\" bliver ikke brugt"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ugyldig indbygget makro \"%s\""
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "kunne ikke bestemme dato og tid"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "kunne ikke bestemme dato og tid"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ugyldig strengkonstant, ignorerer afsluttende '\\'"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "indsættelse af \"%s\" og \"%s\" giver ikke et gyldigt præprocessorsymbol"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 påkræver at restparametrene skal bruges"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "makroen \"%s\" kræver %u parametre, men modtager kun %u"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "makroen \"%s\" bliver viderebragt %u parametre, men tager kun mod %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "uafsluttet parameterliste ved kald af makroen \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "funktionsagtig makro \"%s\" skal bruges med parametre i traditionel C"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "makroparameternavnet \"%s\" optræder mere end én gang"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" må ikke optræde i makroparameterliste"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "makroparametre skal være komma-adskilte"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "parameternavn mangler"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "anonyme makroer med vilkårligt antal parametre blev introduceret i C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C tillader ikke navngivne makroer med vilkårligt antal parametre"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "manglende ')' i makroparameterliste"
-#: macro.c:1428
+#: macro.c:1458
#, fuzzy
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C påkræver mellemrum efter makronavnet"
-#: macro.c:1452
+#: macro.c:1482
#, fuzzy
msgid "missing whitespace after the macro name"
msgstr "ISO C påkræver mellemrum efter makronavnet"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' efterfølges ikke af en makroparameter"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' må ikke optræde ved nogen af enderne i en makrokrop"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" omdefineret"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "den foregående definition er her"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "makroparameteren \"%s\" ville blive gjort til en streng i traditionel C"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "ugyldig hashtype %d i cpp_macro_definition"
@@ -3807,9 +3836,6 @@
#~ msgid "-I- specified twice"
#~ msgstr "-I- er angivet to gange"
-#~ msgid "missing terminating %c character"
-#~ msgstr "manglende afsluttende '%c'-tegn"
-
#~ msgid "unknown string token %s\n"
#~ msgstr "ukendt strengsymbol %s\n"
Modified: llvm-gcc-4.2/trunk/libcpp/po/de.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/de.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/de.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/de.po Thu Aug 2 20:00:37 2007
@@ -6,10 +6,10 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: cpplib 4.1.0\n"
+"Project-Id-Version: cpplib 4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2006-03-08 11:30+0100\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-05-28 13:30+0100\n"
"Last-Translator: Roland Stigge <stigge at antcom.de>\n"
"Language-Team: German <translation-team-de at lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
@@ -150,213 +150,227 @@
msgid "failure to convert %s to %s"
msgstr "Fehler beim Konvertieren von %s nach %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "mehrere Token am Ende der Direktive #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s ist eine Erweiterung des GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "es wird empfohlen, in traditionellem C nicht #elif zu verwenden"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "traditionelles C ignoriert #%s mit eingerücktem #"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "es wird empfohlen, #%s vor traditionellem C mit # zu verbergen"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "das Einbetten einer Direktive innerhalb von Makroargumenten ist nicht portierbar"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "der Stil der line-Direktive ist eine Erweiterung des GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "ungültige Präprozessordirektive #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "»defined« kann nicht als Makroname verwendet werden"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "»%s« kann nicht als Makroname verwendet werden, da es ein Operator in C++ ist"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "kein Makroname in Direktive #%s angegeben"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "Makronamen müssen Bezeichner sein"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "»%s« wird un-definiert"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "fehlendes abschlieÃendes »>«-Zeichen"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s erwartet \"DATEINAME\" oder <DATEINAME>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "leerer Dateiname in #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include ist zu tief geschachtelt"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next in erster Quelldatei"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "ungültiges Kennzeichen »%s« in line-Direktive"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "»%s« hinter #line ist keine positive Ganzzahl"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "Zeilennummer ist auÃerhalb des Wertebereiches"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "»%s« ist kein gültiger Dateiname"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "»%s« hinter # ist keine positive Ganzzahl"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "ungültige #%s-Direktive"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "Pragmas im Namespace »%s« werden ohne passende Namensauflösung registriert"
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "Pragma »%s« wird mit Namensauflösung und ohne Namespace registriert"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "»%s« wird sowohl als Pragma als auch als Pragma-Namespace registriert"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s ist bereits registriert"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s ist bereits registriert"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "Pragma mit NULL-Handler wird registriert"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once in Hauptdatei"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "ungültige #pragma GCC Poison Direktive"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "schlechtes existierendes Makro »%s«"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header auÃerhalb include-Datei ignoriert"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "Quelldatei %s kann nicht gefunden werden"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "aktuelle Datei ist älter als %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma nimmt ein geklammertes Zeichenkettenliteral"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else ohne #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else hinter #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "die Bedingung begann hier"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif ohne #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif hinter #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif ohne #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "fehlendes '(' hinter Prädikat"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "fehlendes ')', um Antwort abzuschlieÃen"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "Prädikatantwort ist leer"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "Behauptung ohne Prädikat"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "Prädikat muss ein Bezeichner sein"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "»%s« wieder behauptet"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "unbeendetes #%s"
@@ -382,164 +396,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "zu viele Dezimalpunkte in Zahl"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "ungültige Ziffer »%c« in Oktal-Konstante"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "Verwendung von hexadezimaler C99-Gleitkommakonstante"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "Exponent hat keine Ziffern"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "hexadezimale Gleitkommakonstanten benötigen Exponenten"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "ungültiger Suffix »%.*s« an Gleitkommakonstante"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "traditionelles C lehnt den Suffix »%.*s« ab"
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "ungültiger Suffix »%.*s« mit hexadezimaler Gleitkommakonstante"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "ungültiger Suffix »%.*s« an Ganzzahlkonstante"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "C99 long long Ganzzahlkonstante verwendet"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "imaginäre Konstanten sind eine GCC-Erweiterung"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "Ganzzahlkonstante ist zu groà für ihren Typ"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "Ganzzahlkonstante ist so groÃ, dass sie vorzeichenlos ist"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "fehlendes ')' hinter »defined«"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "Operator »defined« erfordert einen Bezeichner"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(»%s« ist ein alternatives Token for »%s« in C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "diese Verwendung von »defined« könnte nicht portierbar sein"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "Gleitkommakonstante in Präprozessorausdruck"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "imaginäre Zahl in Präprozessorausdruck"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "»%s« ist nicht definiert"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "fehlender binärer Operator vor Token »%s«"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "Token »%s« ist nicht gültig in Präprozessorausdrücken"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "fehlender Ausdruck zwischen '(' und ')'"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if ohne Ausdruck"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "Operator »%s« hat keinen rechten Operanden"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "Operator »%s« hat keinen linken Operanden"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " ':' ohne vorangehendes '?'"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "unausgeglichener Keller in #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "unmöglicher Operator '%u'"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "fehlendes ')' in Ausdruck"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "'?' ohne folgendes ':'"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "Ganzzahlüberlauf in Präprozessorausdruck"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "fehlendes '(' in Ausdruck"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "der linke Operand von »%s« ändert bei der Weitergabe das Vorzeichen"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "der rechte Operand von »%s« ändert bei der Weitergabe das Vorzeichen"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "traditionelles C weist den unären Plus-Operator zurück"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "Kommaoperator in Operand von #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "Division durch Null in #if"
@@ -579,36 +598,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Mehrere Include-Wächter könnten nützlich sein für:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t muss ein vorzeichenloser Typ sein"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "Präprozessorarithmetik hat maximale Präzision von %lu Bits; Ziel erfordert %lu Bits"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP-Arithmetik muss mindestens so genau sein wie das Ziel int"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "Ziel-char ist weniger als 8 Bits breit"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "Ziel-wchar_t ist schmaler als Ziel char"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "Ziel-int ist schmaler als Ziel-char"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP Halb-Ganzzahl ist schmaler als CPP-Zeichen"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP kann auf diesem Computer keine Wide-Zeichenkonstanten über %lu Bits Breite behandeln, das Ziel benötigt %lu Bits"
@@ -667,27 +686,32 @@
msgid "null character(s) preserved in literal"
msgstr "Null-Zeichen im Literal erhalten"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "fehlendes abschlieÃendes Zeichen %c"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "Kein Newline am Dateiende"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "nicht beendeter Kommentar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++-Stil-Kommentare sind in ISO-C90 nicht erlaubt"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(dies wird nur einmal pro Eingabedatei gemeldet)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "mehrzeiliger Kommentar"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "nicht buchstabierbares Token %s"
@@ -706,114 +730,118 @@
",\n"
" von %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "Makro »%s« wird nicht benutzt"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ungültiges eingebautes Makro »%s«"
-#: macro.c:217
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "Datum und Zeit der Datei konnten nicht bestimmt werden"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "Datum und Zeit konnten nicht bestimmt werden"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ungültiges Zeichenkettenliteral, abschlieÃendes '\\' wird ignoriert"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "das Einfügen von »%s« und »%s« ergibt kein gültiges Präprozessor-Token"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO-C99 erfordert, dass Restargumente verwendet werden"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "Makro »%s« erfordert %u Argumente, aber nur %u wurden angegeben"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "dem Makro »%s« wurden %u Argumente übergeben, aber es nimmt nur %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "unvollendete Argumentliste beim Makroaufruf »%s«"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "funktionsähnliches Makro »%s« muss mit Argumenten in traditionellem C verwendet werden"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "doppelter Makroparameter »%s«"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "»%s« darf nicht in Makroparameterliste auftreten"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "Makroparameter müssen mit Komma getrennt sein"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "Parametername fehlt"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "anonyme variadische Makros wurden in C99 eingeführt"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO-C erlaubt keine benannten variadischen Makros"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "fehlendes ')' in Makroparameterliste"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO-C99 erfordert Whitespace hinter Makroname"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "Whitespace hinter Makroname fehlt"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' wird nicht von einem Makroparameter gefolgt"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' kann nicht an den Enden einer Makroexpansion auftreten"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "»%s« redefiniert"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "dies ist die Stelle der vorherigen Definition"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "Makroargument »%s« würde in traditionellem C zum String gewandelt werden"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "ungültiger Hash-Typ %d in cpp_macro_definition"
@@ -2248,9 +2276,6 @@
#~ msgid "%Hstray '@' in program"
#~ msgstr "%Hverirrtes »@« im Programm"
-#~ msgid "missing terminating %c character"
-#~ msgstr "fehlendes abschlieÃendes Zeichen %c"
-
#~ msgid "stray '%c' in program"
#~ msgstr "verirrtes »%c« im Programm"
Modified: llvm-gcc-4.2/trunk/libcpp/po/el.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/el.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/el.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/el.po Thu Aug 2 20:00:37 2007
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: gcc 3.2\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2002-08-18 15:46+0100\n"
"Last-Translator: Simos Xenitellis <simos at hellug.gr>\n"
"Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -157,218 +157,232 @@
msgid "failure to convert %s to %s"
msgstr "äåí åßíáé äõíáôü íá äçìéïõñãçèåß ôï %s `%s' óôï `%s'"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr ""
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr ""
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr ""
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr ""
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr ""
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr ""
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr ""
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr ""
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr ""
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr ""
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr ""
-#: directives.c:545
+#: directives.c:536
#, fuzzy
msgid "macro names must be identifiers"
msgstr "äéðëüò ðñïóäéïñéóôÞò ìçíýìáôïò"
-#: directives.c:586
+#: directives.c:577
#, fuzzy, c-format
msgid "undefining \"%s\""
msgstr "Ìç ïñéóìÝíï üíïìá %s"
-#: directives.c:641
+#: directives.c:632
#, fuzzy
msgid "missing terminating > character"
msgstr "Ý÷åé ðáñáëçöèåß ôï áñ÷åßï ðñïïñéóìïý"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr ""
-#: directives.c:736
+#: directives.c:727
#, fuzzy, c-format
msgid "empty filename in #%s"
msgstr "Ìç ïñéóìÝíï üíïìá %s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr ""
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr ""
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr ""
-#: directives.c:865
+#: directives.c:856
#, fuzzy, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "%s' äåí åßíáé éó÷ýùí èåôéêüò áêÝñáéïò."
-#: directives.c:871
+#: directives.c:862
#, fuzzy
msgid "line number out of range"
msgstr "%s: áñéèìüò ãñáììÞò Ýîù áðü ôá üñéá"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, fuzzy, c-format
msgid "\"%s\" is not a valid filename"
msgstr "%s' äåí åßíáé éó÷ýùí èåôéêüò áêÝñáéïò."
-#: directives.c:921
+#: directives.c:912
#, fuzzy, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "%s' äåí åßíáé éó÷ýùí èåôéêüò áêÝñáéïò."
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "%%%c: êáôåõèõíôÞñéïò ãñáììÞ ìç Ýãêõñç."
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr ""
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr ""
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr ""
-#: directives.c:1118
+#: directives.c:1110
#, fuzzy, c-format
msgid "#pragma %s is already registered"
msgstr "ï ÷Üñôçò ÷áñáêôÞñùí `%s' ïñßóôçêå Þäç"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr ""
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr ""
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr ""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr ""
-#: directives.c:1439
+#: directives.c:1427
#, fuzzy, c-format
msgid "cannot find source file %s"
msgstr "áäõíáìßá áíïßãìáôïò õðïäï÷Þò: %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr ""
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr ""
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr ""
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else ìåôÜ áðü #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr ""
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr ""
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif ìåôÜ áðü #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr ""
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr ""
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr ""
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr ""
-#: directives.c:1865
+#: directives.c:1878
#, fuzzy
msgid "assertion without predicate"
msgstr "Ç ëåéôïõñãßá äåí åðéôñÝðåôáé"
-#: directives.c:1867
+#: directives.c:1880
#, fuzzy
msgid "predicate must be an identifier"
msgstr "äéðëüò ðñïóäéïñéóôÞò ìçíýìáôïò"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr ""
-#: directives.c:2177
+#: directives.c:2190
#, fuzzy, c-format
msgid "unterminated #%s"
msgstr "ìç ôåñìáôéæüìåío áëöáñéèìçôéêü"
@@ -397,174 +411,179 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
#, fuzzy
msgid "too many decimal points in number"
msgstr "Õðåñâïëéêá ðïëëÜ áíïéêôÜ áñ÷åßá óôï óýóôçìá"
-#: expr.c:212
+#: expr.c:223
#, fuzzy, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "Ìç Ýãêõñç áêÝñáéá ðáñÜìåôñïò `%s'"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr ""
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr ""
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr ""
-#: expr.c:240
+#: expr.c:251
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "Ç ðáñÜìåôñïò êéíçôÞò õðïäéáóôïëÞò äåí åßíáé Ýãêõñç: %s"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr ""
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "Ç ðáñÜìåôñïò êéíçôÞò õðïäéáóôïëÞò äåí åßíáé Ýãêõñç: %s"
+
+#: expr.c:281
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "Ìç Ýãêõñç áêÝñáéá ðáñÜìåôñïò `%s'"
-#: expr.c:283
+#: expr.c:303
#, fuzzy
msgid "use of C99 long long integer constant"
msgstr "Ìç Ýãêõñç áêÝñáéá ðáñÜìåôñïò `%s'"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr ""
-#: expr.c:376
+#: expr.c:396
#, fuzzy
msgid "integer constant is too large for its type"
msgstr "%s: ôï %s åßíáé ôüóï ìåãÜëï ðïõ äå ìðïñåß íá áíáðáñáóôáèåß"
-#: expr.c:388
+#: expr.c:408
#, fuzzy
msgid "integer constant is so large that it is unsigned"
msgstr "%s: ôï %s åßíáé ôüóï ìåãÜëï ðïõ äå ìðïñåß íá áíáðáñáóôáèåß"
-#: expr.c:470
+#: expr.c:490
#, fuzzy
msgid "missing ')' after \"defined\""
msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôá ðåäßá"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr ""
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr ""
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr ""
-#: expr.c:534
+#: expr.c:554
#, fuzzy
msgid "floating constant in preprocessor expression"
msgstr "Åîáßñåóç êéíçôÞò õðïäéáóôïëÞò"
-#: expr.c:540
+#: expr.c:560
#, fuzzy
msgid "imaginary number in preprocessor expression"
msgstr "ìç Ýãêõñïò áñéèìüò áðü ãñáììÝò"
-#: expr.c:585
+#: expr.c:605
#, fuzzy, c-format
msgid "\"%s\" is not defined"
msgstr "ôï `%s' äåí åßíáé êáíïíéêü áñ÷åßï"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, fuzzy, c-format
msgid "missing binary operator before token \"%s\""
msgstr "%s: Áíáìåíüôáí äõáäéêüò ÷åéñéóôÞò.\n"
-#: expr.c:736
+#: expr.c:753
#, fuzzy, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "%s: ìç Ýãêõñç êáíïíéêÞ Ýêöñáóç: %s"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr ""
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr ""
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr ""
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr ""
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr ""
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr ""
-#: expr.c:836
+#: expr.c:853
#, fuzzy, c-format
msgid "impossible operator '%u'"
msgstr "RPC: Ìç óõìâáôÝò åêäüóåéò ôïõ RPC"
-#: expr.c:928
+#: expr.c:943
#, fuzzy
msgid "missing ')' in expression"
msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôéò èÝóåéò"
-#: expr.c:949
+#: expr.c:964
#, fuzzy
msgid "'?' without following ':'"
msgstr "óõíôáêôéêü óöÜëìá óôïí ðñüëïãï: %s"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr ""
-#: expr.c:964
+#: expr.c:979
#, fuzzy
msgid "missing '(' in expression"
msgstr "Ý÷åé ðáñáëçöèåß ç ëßóôá ìå ôéò èÝóåéò"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr ""
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr ""
-#: expr.c:1491
+#: expr.c:1490
#, fuzzy
msgid "division by zero in #if"
msgstr "Äéáßñåóç ìå ìçäÝí óôçí áðïôßìçóç: %s"
@@ -606,37 +625,37 @@
msgid "Multiple include guards may be useful for:\n"
msgstr ""
-#: init.c:406
+#: init.c:407
#, fuzzy
msgid "cppchar_t must be an unsigned type"
msgstr "äéðëüò ðñïóäéïñéóôÞò ìçíýìáôïò"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr ""
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr ""
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr ""
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr ""
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr ""
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr ""
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr ""
@@ -697,29 +716,34 @@
msgid "null character(s) preserved in literal"
msgstr ""
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "Ý÷åé ðáñáëçöèåß ôåñìáôéêüò ÷áñáêôÞñáò %c"
+
+#: lex.c:842
#, fuzzy
msgid "no newline at end of file"
msgstr "%s: ðñüùñï ôÝëïò áñ÷åßïõ"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
#, fuzzy
msgid "unterminated comment"
msgstr "Ìç ôåñìáôéóìÝíç åíôïëÞ `s'"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr ""
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr ""
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr ""
-#: lex.c:1331
+#: lex.c:1333
#, fuzzy, c-format
msgid "unspellable token %s"
msgstr "%s: áäýíáôï ôï Üíïéãìá ôïõ %s: %m\n"
@@ -736,119 +760,124 @@
" from %s:%u"
msgstr ""
-#: macro.c:85
+#: macro.c:83
#, fuzzy, c-format
msgid "macro \"%s\" is not used"
msgstr "ôï `%s' äåí åßíáé êáíïíéêü áñ÷åßï"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, fuzzy, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ìç Ýãêõñï ìÞêïò ãñáììÞò: %s"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "Äåí ìðüñåóá íá áíïßîù ôï áñ÷åßï %s"
+
+#: macro.c:253
#, fuzzy
msgid "could not determine date and time"
msgstr "Äåí ìðüñåóá íá áíïßîù ôï áñ÷åßï %s"
-#: macro.c:387
+#: macro.c:416
#, fuzzy
msgid "invalid string literal, ignoring final '\\'"
msgstr "ìç Ýãêõñïò áñ÷éêüò áñéèìüò ãñáììÞò: `%s'"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr ""
-#: macro.c:508
+#: macro.c:538
#, fuzzy
msgid "ISO C99 requires rest arguments to be used"
msgstr "ÊáêÞ áßôçóç ðáñáìÝôñùí"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr ""
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr ""
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr ""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr ""
-#: macro.c:1248
+#: macro.c:1278
#, fuzzy, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "äéðëü üíïìá ÷áñáêôÞñá `%s'"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr ""
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr ""
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr ""
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr ""
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr ""
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr ""
-#: macro.c:1428
+#: macro.c:1458
#, fuzzy
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ÊáêÞ áßôçóç ðáñáìÝôñùí"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr ""
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr ""
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr ""
-#: macro.c:1599
+#: macro.c:1629
#, fuzzy, c-format
msgid "\"%s\" redefined"
msgstr "áüñéóôï"
-#: macro.c:1604
+#: macro.c:1634
#, fuzzy
msgid "this is the location of the previous definition"
msgstr "áõôÞ åßíáé ç èÝóç ôïõ ðñþôïõ ïñéóìïý"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr ""
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr ""
@@ -1686,9 +1715,6 @@
#~ msgid "-I- specified twice"
#~ msgstr "ìç ïñéóìÝíï"
-#~ msgid "missing terminating %c character"
-#~ msgstr "Ý÷åé ðáñáëçöèåß ôåñìáôéêüò ÷áñáêôÞñáò %c"
-
#, fuzzy
#~ msgid "possible start of unterminated string literal"
#~ msgstr "ìç ôåñìáôéæìÝíï áëöáñéèìçôéêü óôáèåñÜò"
@@ -1834,10 +1860,6 @@
#~ msgstr "äçìéïõñãßá %s %s óôï %s"
#, fuzzy
-#~ msgid "could not find specs file %s\n"
-#~ msgstr "Äåí ìðüñåóá íá áíïßîù ôï áñ÷åßï %s"
-
-#, fuzzy
#~ msgid "rename spec %s to %s\n"
#~ msgstr "äçìéïõñãßá %s %s óôï %s"
Modified: llvm-gcc-4.2/trunk/libcpp/po/es.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/es.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/es.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/es.po Thu Aug 2 20:00:37 2007
@@ -1,13 +1,13 @@
-# Mensajes en español para cpplib-4.0-b20050226.
-# Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-# Cristian Othón Martínez Vera <cfuga at itam.mx>, 2001, 2002, 2003, 2004, 2005.
+# Mensajes en español para cpplib-4.2.0.
+# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+# Cristian Othón Martínez Vera <cfuga at itam.mx>, 2001, 2002, 2003, 2004, 2005, 2006, 2007.
#
msgid ""
msgstr ""
-"Project-Id-Version: cpplib-4.1-b20051125\n"
+"Project-Id-Version: cpplib-4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2005-11-28 13:33-0600\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-05-22 09:19-0500\n"
"Last-Translator: Cristian Othón Martínez Vera <cfuga at itam.mx>\n"
"Language-Team: Spanish <es at li.org>\n"
"MIME-Version: 1.0\n"
@@ -148,213 +148,227 @@
msgid "failure to convert %s to %s"
msgstr "no se puede convertir %s a %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "elementos extra al final de la directiva #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s es una extensión de GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "se sugiere no usar #elif en C tradicional"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "C tradicional ignora #%s con el # indentado"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "se sugiere ocultar #%s de C tradicional con un # indentado"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "imbuir una directiva dentro de los argumentos de una macro no es transportable"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "la directiva de estilo de línea es una extensión de GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "directiva de preprocesamiento #%s inválida"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" no se puede usar como un nombre de macro"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "no se puede usar \"%s\" como un nombre de macro porque es un operador en C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "no se dio un nombre de macro en la directiva #%s"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "los nombres de macro deben ser identificadores"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "borrando la definición de \"%s\""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "falta el carácter de terminación >"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s espera \"NOMBRE_ARCHIVO\" ó <NOMBRE_ARCHIVO>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "nombre de fichero vacío en #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include anidado con demasiada profundidad"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next en fichero primario de código fuente"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "indicador \"%s\" inválido en la línea de la directiva"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\" después de #line no es un entero positivo"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "número de línea fuera de rango"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" no es un nombre de fichero válido"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\" después de # no es un entero positivo"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "directiva #%s inválida"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "registrando pragmas en el espaco de nombres \"%s\" con una expansión de nombre que no coincide"
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "registrando el pragma \"%s\" con expansión de nombre y sin un espacio de nombres"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "registrando \"%s\" como un pragma y como un espacio de nombres de pragma"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s ya está registrado"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s ya está registrado"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "registrando un pragma con manejador NULL"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma una vez en el fichero principal"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "directiva #pragma de GCC envenenada inválida"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "envenenando la macro existente \"%s\""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header ignorado fuera del fichero a incluir"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "no se puede encontrar el fichero fuente %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "el fichero actual es más antiguo que %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma lleva una cadena literal entre paréntesis"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else sin #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else después de #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "el condicional empezó aquí"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif sin #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif después de #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif sin #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "falta '(' antes del predicado"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "falta ')' para completar la respuesta"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "el predicado de la respuesta está vacío"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "afirmación sin predicado"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "el predicado debe ser un identificador"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" reafirmado"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "#%s sin terminar"
@@ -380,164 +394,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "demasiados puntos decimales en el número"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "dígito \"%c\" inválido en la constante octal"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "uso de una constante de coma flotante hexadecimal C99"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "el exponente no tiene dígitos"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "las constantes de coma flotante hexadecimal requieren un exponente"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "sufijo \"%.*s\" inválido en la constante de coma flotante"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "C tradicional rechaza el sufijo \"%.*s\""
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "sufijo \"%.*s\" inválido en la constante de coma flotante hexadecimal"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "sufijo \"%.*s\" inválido en la constante entera"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "uso de una constante entera long long C99"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "las constantes imaginarias son una extensión GCC"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "la constante entera es demasiado grande para su tipo"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "la constante entera es tan grande que es unsigned"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "falta `)' después de \"defined\""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "el operador \"defined\" requiere un identificador"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\" es un elemento alternativo para \"%s\" en C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "este uso de \"defined\" puede no ser transportable"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "constante de coma flotante en una expresión del preprocesador"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "número imaginario en una expresión del preprocesador"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" no está definido"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "falta un operador binario antes del elemento \"%s\""
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "el elemento \"%s\" no es válido en las expresiones del preprocesador"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "falta una expresión entre '(' y ')'"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if sin expresión"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "el operador '%s' no tiene operando derecho"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "el operador `%s' no tiene operando izquierdo"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " ':' sin una '?' precedente"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "pila desbalanceada en #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "operador '%u' imposible"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "falta un ')' en la expresión"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "'?' sin ':' a continuación"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "desbordamiento entero en expresión del preprocesador"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "falta un '(' en la expresión"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "el operando izquierdo de \"%s\" cambia el signo cuando es promovido"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "el operando derecho de \"%s\" cambia el signo cuando es promovido"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "C tradicional rechaza el operador unario mas"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "operador coma en operando de #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "división por cero en #if"
@@ -577,36 +596,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Guardias múltiples de include pueden ser útiles para:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t debe ser de un tipo unsigned"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "la aritmética del preprocesador tiene una precisión máxima de %lu bits; el objetivo requiere de %lu bits"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "la aritmética de CPP debe se al menos tan precisa como un int del objetivo"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "el char del objetivo tiene menos de 8 bits de ancho"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "el wchar_t del objetivo es más estrecho que el char del objetivo"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "el int del objetivo es más estrecho que el char del objetivo"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "el medio-entero de CPP es más estrecho que el carácter de CPP"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP no puede manejar constantes de carácter anchas más allá de %lu bits en este objetivo, pero el objetivo requiere %lu bits"
@@ -665,27 +684,32 @@
msgid "null character(s) preserved in literal"
msgstr "caracter(es) nulo(s) preservados en la literal"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "falta el carácter de terminación %c"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "no hay caractér de fin de línea al final del fichero"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "comentario sin terminar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "los comentarios de estilo C++ no se permiten en ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(esto se reportará solamente una vez por cada fichero de entrada)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "comentario en múltiples líneas"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "elemento %s impronunciable"
@@ -704,114 +728,118 @@
",\n"
" de %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "la macro \"%s\" no se utiliza"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "macro interna \"%s\" inválida"
-#: macro.c:217
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "no se puede determinar la marca de fecha del fichero"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "no se puede determinar la fecha y la hora"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "cadena literal inválida, se ignora el '\\' finales"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "pegar \"%s\" y \"%s\" no da un elemento válido de preprocesamiento"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 requiere que el resto de los argumentos sea usado"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "la macro \"%s\" requiere %u argumentos, pero solo se proporcionan %u"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "la macro \"%s\" recibió %u argumentos, pero solamente tomó %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "lista de argumentos sin terminar al invocar la macro \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "la función de macro \"%s\" se debe usar con argumentos en C tradicional"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "parámetro de macro \"%s\" duplicado"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" podría faltar en la lista de parámetro de macro"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "los parámetros de macro deben ser separados por comas"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "falta el nombre del parámetro"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "los macros variadic anónimos se introdujeron en C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C no permite macros variadic nombrados"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "falta paréntesis derecho en la lista de parámetros de macro"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 requiere espacios en blanco después del nombre de macro"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "faltan espacios en blanco después del nombre de macro"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' no es seguido por un parámetro de macro"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' no puede aparece en o al final de una expansión de macro"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "se redefinió \"%s\""
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "esta es la ubicación de la definición previa"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "el argumento de macro \"%s\" debería ser convertido a cadena en C tradicional"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "tipo de hash %d inválido en cpp_macro_definition"
Modified: llvm-gcc-4.2/trunk/libcpp/po/fr.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/fr.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/fr.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/fr.po Thu Aug 2 20:00:37 2007
@@ -118,7 +118,7 @@
msgstr ""
"Project-Id-Version: GNU cpplib 4.0.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2005-06-12 08:00-0500\n"
"Last-Translator: Michel Robitaille <robitail at IRO.UMontreal.CA>\n"
"Language-Team: French <traduc at traduc.org>\n"
@@ -262,218 +262,233 @@
msgid "failure to convert %s to %s"
msgstr "échec de conversion de %s vers %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "éléments lexicaux superflus à la fin de la directive #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s est une extension GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "il est suggéré de ne pas utiliser #elif en C traditionnel"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "le C traditionel ignore la directive #%s si le caractère # est indenté"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "il est suggéré de cacher #%s au C traditionel en indentant le « # »"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "placer une directive dans les arguments d'une macro n'est pas portable"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "la directive de style de ligne est extension GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "directive de pré-traitement #%s invalide"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "« defined » ne peut être utilisé comme nom de macro"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "« %s » ne peut être utilisé comme nom de macro car c'est un opérateur en C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "aucun nom de macro donné dans la directive #%s"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "les noms de macro doivent être des identificateurs"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "indéfinition de « %s »"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "caractère > de terminaison manquant"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s attend \"NOM_DE_FICHIER\" ou <NOM_DE_FICHIER>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "nom de fichier vide dans #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include imbriqué trop profondément"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next dans un fichier source primaire"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "fanion « %s » invalide dans la ligne de directive"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "« %s » après #line n'est pas un nombre entier positif"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "numéro de ligne hors limite"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "« %s » n'est pas un nom de fichier valide"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "« %s » après # n'est pas un nombre entier positif"
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "directive #ident invalide"
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
# FIXME
-#: directives.c:1112
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "enregistrement de \"%s\" à la fois comme une pragma et un espace de nom de pragma"
+
+# FIXME
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "enregistrement de \"%s\" à la fois comme une pragma et un espace de nom de pragma"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "la #pragma %s %s est déjà enregistrée"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "la #pragma %s est déjà enregistrée"
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
# FIXME
-#: directives.c:1362
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once utilisée une seule fois dans le fichier principal"
# FIXME
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "la directive GCC #pragma poison est invalide"
# FIXME
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "élimination de la macro existente « %s »"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header ignorée en dehors du fichier d'inclusion"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "impossible de trouver le fichier source %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "le fichier courant est plus vieux que %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma prend une chaîne entourée de parenthèrese"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else sans #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else après #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "la condition débute ici"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif sans #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif après #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif sans #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "« ( » manquante après le prédicat"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "« ) » manquante pour completer la réponse"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "la réponse du prédicat est vide"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "assertion sans prédicat"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "le prédicat doit être un identificateur"
# FIXME
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "« %s » re-asserti"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "#%s non terminé"
@@ -499,164 +514,169 @@
msgid "%s: %s"
msgstr "%s : %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "trop de points décimaux dans le nombre"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "chiffre « %c » invalide dans la constante en base 8"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "usage d'une constante hexadécimale constante à la C99"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "l'exposant n'a pas de chiffre"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "la contante hexadécimale flottante requière un exposant"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "suffixe « %.*s » invalide pour une constante flottante"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "le C traditionnel interdit le suffixe « %.*s »"
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "suffixe « %.*s » invalide pour une constante flottante"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "suffixe « %.*s » invalide pour une constante entière"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "usage d'une constante entière « long long » à la C99"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "les constantes imaginaires sont une extension GCC"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "constante entière trop grande pour tenir dans son type"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "cette constante entière est si grande qu'elle ne peut être signée"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "« ) » manquant après « defined »"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "l'opérateur « defined » requiert un identificateur"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(« %s » est un élément lexical alternatif pour « %s » en C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "cette utilisation de « defined » peut ne pas être portable"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "constante flottante dans une expresion pour le préprocesseur"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "constante complexe dans une expresion pour le préprocesseur"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "« %s » n'est pas défini"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "opérateur binaire manquant avant l'élément lexical « %s »"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "l'élément lexical « %s » n'est pas valide dans les expressions pour le préprocesseur"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "expression manquante entre '(' et ')'"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if sans expression"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "l'opérateur « %s » n'a pas d'opérande droite"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "opérateur « %s » n'a pas d'opérande gauche"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr "« : » n'est pas précédé de « ? »"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "pile non balancée dans #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "opérateur impossible « %u »"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "« ) » manquante dans l'expresion"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "« ? » n'est pas suivi de « : »"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "débordement d'entier dans l'expresion pour le préprocesseur"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "« ( » manquante dans l'expresion"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "L'opérande gauche de « %s » change de signe lors de sa promotion"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "L'opérande droite de « %s » change de signe lors de sa promotion"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "le C traditionnel rejette le plus unaire"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "opérateur virgule dans l'opérande de #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "division par zéro dans #if"
@@ -698,36 +718,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "De multiples balises pour les inclusions peuvent être utiles pour:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t doit être d'un type non signé"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "l'arithmétique du préprocesseur a une précision maximale de %lu bits ; la cible requière %lu bits"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "l'arithmétique de CPP doit être au moins aussi précise que le type int de la cible"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "sur la cible, « char » fait moins de 8 bits"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "sur la cible, « wchar_t » est plus petit que « char »"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "sur la cible, « int » est plus petit que « char »"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "les demi-entiers de CPP sont plus petit que les caractères de CPP"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP sur cette machine ne peut gérer les constantes larges de caractères de plus de %lu bits, mais la cible requière %lu bits"
@@ -788,27 +808,32 @@
msgid "null character(s) preserved in literal"
msgstr "caractère(s) nul préservé(s) dans la chaîne"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "caractère %c de terminaison manquant"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "pas de retour chariot à la fin du fichier"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "commentaire non terminé"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "Les commentaires à la C++ ne sont pas permis en C89 ISO"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(ceci sera rapporté une seule fois seulement par fichier d'entrée)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "commentaire multi-lignes"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "l'élément lexical %s ne peut être épelé"
@@ -827,115 +852,120 @@
",\n"
" à partir de %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "la macro « %s » n'est pas utilisée"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "macro interne invalide « %s »"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "ne peut déterminer la date et l'heure"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "ne peut déterminer la date et l'heure"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "chaîne invalide, « \\ » final ignoré"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "le collage de « %s » et de « %s » ne donne pas d'élément lexical de pré-traitement valide"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 requiert que tous les arguments soient utilisés"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "macro « %s » requiert %u arguments, mais seulement %u ont été passés"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "la macro « %s » a reçu %u arguments, mais elle n'en prend que %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "liste d'arguments non terminée invoquant la macro « %s »"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "la macro « %s » ressemblant à une fonction doit utilisée avec des arguments en C traditionnel"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "paramètre de macro « %s » en double"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "« %s » peut ne pas apparaître parmi les paramètres de macros"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "les paramètres de macro doivent être séparés par des virgules"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "nom de paramètre manquant"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "les macros anonymes à nombre variable d'arguments ont été introduites avec le C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C ne permet pas les macros nommées à nombre variable d'arguments"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "« ) » manquante dans la liste des paramètres de macros"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 requiert un blanc après le nom de la macro"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "blanc d'espacement manquant après le nom de la macro"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "« # » n'est pas suivi d'un paramètre de macro"
# FIXME
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "« ## » ne peut apparaître à chacune des fins de l'expansion de macros"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "« %s » redéfini"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "ceci est la localisation d'une précédente définition"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "l'argument macro « %s » serait changé en chaine en C traditionnel"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "type de hachage %d invalide dans cpp_macro_definition"
@@ -2373,9 +2403,6 @@
#~ msgid "%Hstray '@' in program"
#~ msgstr "%H« @ » perdu dans le programme"
-#~ msgid "missing terminating %c character"
-#~ msgstr "caractère %c de terminaison manquant"
-
#~ msgid "stray '%c' in program"
#~ msgstr "« %c » perdu dans le programme"
Modified: llvm-gcc-4.2/trunk/libcpp/po/ja.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/ja.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/ja.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/ja.po Thu Aug 2 20:00:37 2007
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: gcc 3.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2001-12-05 22:47+0900\n"
"Last-Translator: Daisuke Yamashita <yamad at mb.infoweb.ne.jp>\n"
"Language-Team: Japanese <ja at li.org>\n"
@@ -155,214 +155,228 @@
msgid "failure to convert %s to %s"
msgstr ""
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr ";ʬ¤Ê¥È¡¼¥¯¥ó¤¬ #%s ¥Ç¥£¥ì¥¯¥Æ¥£¥Ö¤Î½ª¤ê¤Ë¤¢¤ê¤Þ¤¹"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s ¤Ï GCC ¤Î³ÈÄ¥¤Ç¤¹"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "¸Å¤¤ C ¤Ç¤Ï #elif ¤ò»È¤ï¤Ê¤¤Êý¤¬¤¤¤¤¤Ç¤¹"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "¸Å¤¤ C ¤Ç¤Ï¡¢¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤¿ # ¤Î #%s ¤ò̵»ë¤·¤Þ¤¹"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "¥¤¥ó¥Ç¥ó¥È¤µ¤ì¤¿ # ¤¬¤¢¤ë¸Å¤¤ C ¤«¤é¤Ï #%s ¤ò±£¤¹¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr ""
-#: directives.c:412
+#: directives.c:408
#, fuzzy
msgid "style of line directive is a GCC extension"
msgstr "#%s ¤Ï GCC ¤Î³ÈÄ¥¤Ç¤¹"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "̵¸ú¤Ê¥×¥ê¥×¥í¥»¥¹¥Ç¥£¥ì¥¯¥Æ¥£¥ô #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" ¤ò¥Þ¥¯¥í̾¤È¤·¤Æ¤Ï»È¤¨¤Þ¤»¤ó"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\" ¤Ï C++ ¤Î±é»»»Ò¤Ç¤¢¤ê¡¢¥Þ¥¯¥í̾¤È¤·¤Æ»ÈÍѤ¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "¥Þ¥¯¥í̾¤¬ #%s ¥Ç¥£¥ì¥¯¥Æ¥£¥ÖÃæ¤ËÍ¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "¥Þ¥¯¥í̾¤Ï¼±Ê̻ҤǤʤ¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "\"%s\" ¤ò undef ¤·¤Þ¤¹"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "½ªÃ¼Ê¸»ú > ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s ¤Ï \"¥Õ¥¡¥¤¥ë̾\" ¤¢¤ë¤¤¤Ï <¥Õ¥¡¥¤¥ë̾> ¤òɬÍפȤ·¤Þ¤¹"
-#: directives.c:736
+#: directives.c:727
#, fuzzy, c-format
msgid "empty filename in #%s"
msgstr "#%s ¤Ç¤Î¥Õ¥¡¥¤¥ë̾¤¬¶õ¤Ç¤¹"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include ¤Î¥Í¥¹¥È¤¬¿¼¤¹¤®¤Þ¤¹"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next ¤¬¼ç¤¿¤ë¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ë¤¢¤ê¤Þ¤¹"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "\"%s\" ¤Ï line ¥Ç¥£¥ì¥¯¥Æ¥£¥Ö¤Ç¤Ï̵¸ú¤Ê¥Õ¥é¥°¤Ç¤¹"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "#line ¤Î¸å¤í¤Î \"%s\" ¤¬Àµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "¹ÔÈֹ椬Èϰϳ°¤Ç¤¹"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" ¤ÏÀµ¾ï¤Ê¥Õ¥¡¥¤¥ë̾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:921
+#: directives.c:912
#, fuzzy, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "#line ¤Î¸å¤í¤Î \"%s\" ¤¬Àµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "̤ÄêµÁËô¤ÏÉÔÀµ¤Ê # ¥Ç¥£¥ì¥¯¥Æ¥£¥Ö¤Ç¤¹"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr ""
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr ""
-#: directives.c:1115
+#: directives.c:1107
#, fuzzy, c-format
msgid "#pragma %s %s is already registered"
msgstr "¥¯¥é¥¹ `%s' ¤Ï´û¤Ë¸ºß¤·¤Þ¤¹"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr ""
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once ¤¬¥á¥¤¥ó¥Õ¥¡¥¤¥ë¤Ë¤¢¤ê¤Þ¤¹"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "#pragma GCC ±øÀ÷¥Ç¥£¥ì¥¯¥Æ¥£¥ô¤¬Ìµ¸ú¤Ç¤¹"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "´û¸¤Î¥Þ¥¯¥í \"%s' ¤ò±øÀ÷¤·¤Þ¤¹"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "include ¥Õ¥¡¥¤¥ë³°¤Î #pragma system_header ¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿"
-#: directives.c:1439
+#: directives.c:1427
#, fuzzy, c-format
msgid "cannot find source file %s"
msgstr "¥½¡¼¥¹ %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "¸½ºß¤Î¥Õ¥¡¥¤¥ë¤Ï %s ¤è¤ê¸Å¤¤¤Ç¤¹"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pramga ¤¬³ç¸Ì¤Ç°Ï¤Þ¤ì¤¿Ê¸»úÎó¥ê¥Æ¥é¥ë¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else ¤Ë #if ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else ¤¬ #else ¤Î¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "¤½¤Î¾ò·ï¤Ï¤³¤³¤«¤é»Ï¤Þ¤ê¤Þ¤¹"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif ¤Ë #if ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif ¤¬ #else ¤Î¸å¤í¤Ë¤¢¤ê¤Þ¤¹"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif ¤Ë #if ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "½Ò¸ì¤Î¸å¤í¤Î '(' ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "²ò¤òÊä´°¤¹¤ë ')' ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "½Ò¸ì¤Î²ò¤¬¶õ¤Ç¤¹"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "½Ò¸ì¤Î¤Ê¤¤¥¢¥µ¡¼¥·¥ç¥ó¤Ç¤¹"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "½Ò¸ì¤Ï¼±Ê̻ҤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" ¤¬ºÆ¥¢¥µ¡¼¥È¤µ¤ì¤Þ¤·¤¿"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "½ªÃ¼¤Î¤Ê¤¤ #%s"
@@ -390,177 +404,182 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
#, fuzzy
msgid "too many decimal points in number"
msgstr "`asm' Ãæ¤ÎÂåÂØ¥¡¼¥ï¡¼¥É¤¬Â¿¤¹¤®¤Þ¤¹"
-#: expr.c:212
+#: expr.c:223
#, fuzzy, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "̵¸ú¤Ê¶çÆÉÅÀ `%c' ¤¬À©ÌóÆâ¤Ë¤¢¤ê¤Þ¤¹"
-#: expr.c:218
+#: expr.c:229
#, fuzzy
msgid "use of C99 hexadecimal floating constant"
msgstr "16 ¿ÊÉâÆ°¾®¿ôÄê¿ô¤¬¤Ù¤¾è¤ò»ý¤Á¤Þ¤»¤ó"
-#: expr.c:227
+#: expr.c:238
#, fuzzy
msgid "exponent has no digits"
msgstr "ÉâÆ°¾®¿ôÄê¿ô¤Î¤Ù¤¿ô¤¬¡¢¥¢¥é¥Ó¥¢¿ô»ú¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: expr.c:234
+#: expr.c:245
#, fuzzy
msgid "hexadecimal floating constants require an exponent"
msgstr "16 ¿ÊÉâÆ°¾®¿ôÄê¿ô¤¬¤Ù¤¾è¤ò»ý¤Á¤Þ¤»¤ó"
-#: expr.c:240
+#: expr.c:251
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "ÀÜÈø¼ '%.*s' ¤ÏÀ°¿ôÄê¿ô¤Ë¤Ï̵¸ú¤Ç¤¹"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, fuzzy, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "¸Å¤¤ C ¤Ç¤Ï 'f' ÀÜÈø¼¤¬µñÈݤµ¤ì¤Þ¤¹"
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "ÀÜÈø¼ '%.*s' ¤ÏÀ°¿ôÄê¿ô¤Ë¤Ï̵¸ú¤Ç¤¹"
+
+#: expr.c:281
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "ÀÜÈø¼ '%.*s' ¤ÏÀ°¿ôÄê¿ô¤Ë¤Ï̵¸ú¤Ç¤¹"
-#: expr.c:283
+#: expr.c:303
#, fuzzy
msgid "use of C99 long long integer constant"
msgstr "ISO C89 ¤Ç¤Ï long long À°¿ôÄê¿ô¤ò¶Ø¤¸¤Þ¤¹"
-#: expr.c:290
+#: expr.c:310
#, fuzzy
msgid "imaginary constants are a GCC extension"
msgstr "#if ¼°¤ÎÃæ¤Ç¤Ïʸ»úÎóÄê¿ô¤¬»È¤¨¤Þ¤»¤ó"
-#: expr.c:376
+#: expr.c:396
#, fuzzy
msgid "integer constant is too large for its type"
msgstr "À°¿ôÄê¿ô¤¬Â礤¹¤®¤ë¤Î¤Ç unsigned ¤Ë¤Ê¤ê¤Þ¤·¤¿"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "À°¿ôÄê¿ô¤¬Â礤¹¤®¤ë¤Î¤Ç unsigned ¤Ë¤Ê¤ê¤Þ¤·¤¿"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "\"defined\" ¤Î¸å¤í¤Î ')' ¤¬·ç¤±¤Æ¤¤¤Þ¤¹"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "\"defined\" ±é»»»Ò¤Ï¼±Ê̻ҤòÍ׵ᤷ¤Þ¤¹"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "¡ÊC++ ¤Ç¤Ï \"%s\" ¤¬ \"%s\" ¤ÎÂåÂإȡ¼¥¯¥ó¤Ç¤¹¡Ë"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr ""
-#: expr.c:534
+#: expr.c:554
#, fuzzy
msgid "floating constant in preprocessor expression"
msgstr "À°¿ô¤¬¥×¥ê¥×¥í¥»¥Ã¥µ¼°Æâ¤Ç¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿"
-#: expr.c:540
+#: expr.c:560
#, fuzzy
msgid "imaginary number in preprocessor expression"
msgstr "À°¿ô¤¬¥×¥ê¥×¥í¥»¥Ã¥µ¼°Æâ¤Ç¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" ¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr ""
-#: expr.c:736
+#: expr.c:753
#, fuzzy, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "À°¿ô¤¬¥×¥ê¥×¥í¥»¥Ã¥µ¼°Æâ¤Ç¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr ""
-#: expr.c:756
+#: expr.c:773
#, fuzzy
msgid "#if with no expression"
msgstr " throw ¤µ¤ì¤¿¼°¤ÎÃæ"
-#: expr.c:759
+#: expr.c:776
#, fuzzy, c-format
msgid "operator '%s' has no right operand"
msgstr "È¿Éü»Ò `%s' ¤ÏÈóÀ°¿ô·¿¤Ç¤¹"
-#: expr.c:764
+#: expr.c:781
#, fuzzy, c-format
msgid "operator '%s' has no left operand"
msgstr "²¾°ú¿ô `%s' ¤ÏÉÔ´°Á´·¿¤Ç¤¹"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr ""
-#: expr.c:817
+#: expr.c:834
#, fuzzy
msgid "unbalanced stack in #if"
msgstr "Âбþ¤·¤Æ¤¤¤Ê¤¤ #endif"
-#: expr.c:836
+#: expr.c:853
#, fuzzy, c-format
msgid "impossible operator '%u'"
msgstr "¤¢¤ê¤¨¤Ê¤¤±é»»»Ò '%s'"
-#: expr.c:928
+#: expr.c:943
#, fuzzy
msgid "missing ')' in expression"
msgstr "Äê¿ô¼°¤¬·ç¤±¤Æ¤¤¤ë¤«Ìµ¸ú¤Ç¤¹"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr ""
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "À°¿ô¤¬¥×¥ê¥×¥í¥»¥Ã¥µ¼°Æâ¤Ç¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿"
-#: expr.c:964
+#: expr.c:979
#, fuzzy
msgid "missing '(' in expression"
msgstr "Äê¿ô¼°¤¬·ç¤±¤Æ¤¤¤ë¤«Ìµ¸ú¤Ç¤¹"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr ""
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "¸Å¤¤ C ¤Ç¤Ïñ¹à¥×¥é¥¹±é»»»Ò¤òµñÈݤ·¤Þ¤¹"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "¥«¥ó¥Þ±é»»»Ò¤¬ #if ±é»»»Ò¤ÎÃæ¤Ë¤¢¤ê¤Þ¤¹"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "#if ¤Ç¥¼¥í½ü»»¤¬È¯À¸¤·¤Þ¤·¤¿"
@@ -600,37 +619,37 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "¿½Å include ¤«¤é¤ÎÊݸͱפȤʤë¤Ç¤·¤ç¤¦:\n"
-#: init.c:406
+#: init.c:407
#, fuzzy
msgid "cppchar_t must be an unsigned type"
msgstr "½Ò¸ì¤Ï¼±Ê̻ҤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr ""
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr ""
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr ""
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr ""
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr ""
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr ""
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr ""
@@ -689,28 +708,33 @@
msgid "null character(s) preserved in literal"
msgstr "¥ê¥Æ¥é¥ëÃæ¤Ç null ʸ»ú¤¬³ÎÊݤµ¤ì¤Þ¤·¤¿"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "%c ʸ»ú¤Ç¤Î½ªÃ¼¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "¥Õ¥¡¥¤¥ëËöÈø¤Ë²þ¹Ô¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤¥³¥á¥ó¥È"
-#: lex.c:1001
+#: lex.c:1013
#, fuzzy
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++ ¥¹¥¿¥¤¥ë¤Î¥³¥á¥ó¥È¤Ï ISO C89 ¤Ç¤Ïµö¤µ¤ì¤Þ¤»¤ó"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(¤³¤ì¤ÏÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë¤Ä¤°ì²ó¤À¤±Êó¹ð¤µ¤ì¤Þ¤¹)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "Ê£¿ô¹Ô¤Î¥³¥á¥ó¥È"
-#: lex.c:1331
+#: lex.c:1333
#, fuzzy, c-format
msgid "unspellable token %s"
msgstr "ÄÖ¤ì¤Ê¤¤¥È¡¼¥¯¥ó %s ¤Ç¤¹"
@@ -729,117 +753,122 @@
",\n"
" %s:%u ¤«¤é"
-#: macro.c:85
+#: macro.c:83
#, fuzzy, c-format
msgid "macro \"%s\" is not used"
msgstr "\"%s\" ¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, fuzzy, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ÁȤ߹þ¤ß¥Þ¥¯¥í \"%s\" ¤Ï̵¸ú¤Ç¤¹"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "spec ¥Õ¥¡¥¤¥ë %s ¤ò¸«¤Ä¤±¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿\n"
+
+#: macro.c:253
#, fuzzy
msgid "could not determine date and time"
msgstr "°Í¸´Ø·¸¤ÎÄÉÀפΤ¿¤á¤Î¥¿¡¼¥²¥Ã¥È̾¤¬ÆÃÄê¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ʸ»úÎó¥ê¥Æ¥é¥ë¤¬Ìµ¸ú¤Ç¤¹¡¢ºÇ¸å¤Î '\\' ¤ò̵»ë¤·¤Þ¤¹"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "\"%s\" ¤È \"%s\" ¤òŽÉÕ¤±¤Þ¤·¤¿¤¬Àµ¾ï¤Ê¥×¥ê¥×¥í¥»¥Ã¥µ¥È¡¼¥¯¥ó¤È¤Ê¤ê¤Þ¤»¤ó"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 ¤Ï»ÈÍѤµ¤ì¤ë¤Ù¤»Ä¤ê¤Î¤Î°ú¿ô¤òÍ׵ᤷ¤Þ¤¹"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "¥Þ¥¯¥í \"%s\" ¤Ï°ú¿ô¤ò %u Í׵ᤷ¤Þ¤¹¤¬¡¢%u ¸Ä¤·¤«Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "¥Þ¥¯¥í \"%s\" ¤Ë°ú¿ô¤¬ %u ÅϤµ¤ì¤Þ¤·¤¿¤¬¡¢%u ¤·¤«¼õ¤±¼è¤ê¤Þ¤»¤ó"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤°ú¿ô¥ê¥¹¥È¤¬¥Þ¥¯¥í \"%s\" ¤òµ¯Æ°¤·¤è¤¦¤È¤·¤Þ¤·¤¿"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "¸Å¤¤ C ¤Ç¤Ï¡¢´Ø¿ôŪ¥Þ¥¯¥í \"%s\" ¤Ë°ú¿ô¤¬Í¿¤¨¤é¤ì¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "¥Þ¥¯¥í²¾°ú¿ô \"%s\" ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" ¤Ï¥Þ¥¯¥í²¾°ú¿ô¥ê¥¹¥È¤Ë¸½¤ì¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "¥Þ¥¯¥í²¾°ú¿ô¤Ï¥«¥ó¥Þ¶èÀڤꤵ¤ì¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "²¾°ú¿ô̾¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "̵̾²ÄÊÑ°ú¿ô¥Þ¥¯¥í¤Ï C99 ¤ÇºÎ¤êÆþ¤ì¤é¤ì¤Þ¤·¤¿"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C ¤Ç¤Ï̾Á°¤Ä¤²ÄÊÑ°ú¿ô¥Þ¥¯¥í¤òµö¤·¤Þ¤»¤ó"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "¥Þ¥¯¥í²¾°ú¿ô¥ê¥¹¥È¤Ç¡¢')' ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-#: macro.c:1428
+#: macro.c:1458
#, fuzzy
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C ¤Ç¤Ï¥Þ¥¯¥í̾¤Î¸å¤í¤Ë¶õÇò¤òÍ׵ᤷ¤Þ¤¹"
-#: macro.c:1452
+#: macro.c:1482
#, fuzzy
msgid "missing whitespace after the macro name"
msgstr "ISO C ¤Ç¤Ï¥Þ¥¯¥í̾¤Î¸å¤í¤Ë¶õÇò¤òÍ׵ᤷ¤Þ¤¹"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' ¤Ë¥Þ¥¯¥í²¾°ú¿ô̾¤¬Â³¤¤¤Æ¤¤¤Þ¤»¤ó"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' ¤Ï¥Þ¥¯¥íŸ³«¤Îξü¤Ë¤Ï½Ð¸½¤Ç¤¤Þ¤»¤ó"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" ¤¬ºÆÄêµÁ¤µ¤ì¤Þ¤·¤¿"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "¤³¤³¤¬°ÊÁ°¤ÎÀë¸À¤¬¤¢¤ë°ÌÃ֤Ǥ¹"
-#: macro.c:1654
+#: macro.c:1684
#, fuzzy, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "¥Þ¥¯¥í°ú¿ô \"%s\" ¤Ï -traditional ¤ò¤Ä¤±¤ë¤Èʸ»úÎ󲽤µ¤ì¤¿»ö¤Ç¤·¤ç¤¦"
-#: macro.c:1677
+#: macro.c:1707
#, fuzzy, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "dump_definition ¤Ë ̵¸ú¤Ê¥Ï¥Ã¥·¥å¥¿¥¤¥× %d"
@@ -6758,9 +6787,6 @@
#~ msgid "'$' character(s) in identifier"
#~ msgstr "'$' ʸ»ú¤¬¼±Ê̻ҤËÆþ¤Ã¤Æ¤¤¤Þ¤¹"
-#~ msgid "missing terminating %c character"
-#~ msgstr "%c ʸ»ú¤Ç¤Î½ªÃ¼¤ò·ç¤¤¤Æ¤¤¤Þ¤¹"
-
#~ msgid "possible start of unterminated string literal"
#~ msgstr "½ªÃ¼¤Î¤Ê¤¤Ê¸»úÎó¥ê¥Æ¥é¥ë¤Î¿äÄ곫»Ï°ÌÃÖ"
@@ -7385,9 +7411,6 @@
#~ msgid "specs %%include syntax malformed after %ld characters"
#~ msgstr "specs ¤Î %ld ʸ»úÌܰʹߤΠ%%include ¤Î½ñ¼°¤¬ÊѤǤ¹"
-#~ msgid "Could not find specs file %s\n"
-#~ msgstr "spec ¥Õ¥¡¥¤¥ë %s ¤ò¸«¤Ä¤±¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿\n"
-
#~ msgid "specs %%rename syntax malformed after %ld characters"
#~ msgstr "specs ¤Î %ld ʸ»úÌܰʹߤΠ%%rename ¤Î½ñ¼°¤¬ÊѤǤ¹"
Modified: llvm-gcc-4.2/trunk/libcpp/po/nl.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/nl.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/nl.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/nl.po Thu Aug 2 20:00:37 2007
@@ -1,20 +1,17 @@
# Dutch messages for cpplib.
-# Copyright (C) 1999, 2000, 2002, 2003, 2005 Free Software Foundation, Inc.
-# Tim Van Holder <tim.van.holder at pandora.be>, 2005.
-#
-# Note: This based on the official .pot - unfortunately that does not match
-# what you get when creating a .pot based on the official 4.0.0 sources...
+# Copyright (C) 1999, 2000, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+# Tim Van Holder <tim.van.holder at telenet.be>, 2007.
#
msgid ""
msgstr ""
-"Project-Id-Version: cpplib 4.1-b20051125\n"
+"Project-Id-Version: cpplib 4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2005-11-28 11:41+0100\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-05-22 16:27+0200\n"
"Last-Translator: Tim Van Holder <tim.van.holder at telenet.be>\n"
"Language-Team: Dutch <vertaling at vrijschrift.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -45,7 +42,7 @@
#: charset.c:765
#, c-format
msgid "character 0x%lx is not unibyte in execution character set"
-msgstr "teken 0x%lx is niet unibyte in de uitvoerkarakterset"
+msgstr "teken 0x%lx is niet unibyte in de uitvoeringskarakterset"
#: charset.c:889
#, c-format
@@ -154,224 +151,241 @@
msgid "failure to convert %s to %s"
msgstr "fout bij omzetten van %s naar %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "overbodige tokens aan einde van #%s commando"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s is een uitbreiding van GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "gebruik liefst geen #elif in traditionele C"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
-msgstr "traditionele C negeert #%s wanneer de # geindenteerd is"
+msgstr "traditionele C negeert #%s wanneer de # geïndenteerd is"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
-msgstr "verberg #%s liefst van traditionele C via een geindenteerde #"
+msgstr "verberg #%s liefst van traditionele C via een geïndenteerde #"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "het plaatsen van een commando binnen macro-argumenten is niet portabel"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "dit soort line commando is een uitbreiding van GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "ongeldig preprocessing-commando #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" kan niet als macronaam gebruikt worden"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\" kan niet als macronaam gebruikt worden omdat het een operator is in C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "geen macronaam opgegeven in #%s commando"
# lap! hier heb ik het zitten... wat is verdorie een betere vertaling voor identifier?
# Dit is wel langer maar zegt denk ik wel waar het om gaat.
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "macronamen moeten voldoen aan de regels voor namen in C/C++"
# niet perfect, maar beter dan "wordt ongedefinieerd", "wordt geondefinieerd" of iets dergelijks...
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "definitie van \"%s\" wordt ongedaan gemaakt"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "sluitend > teken ontbreekt"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s verwacht \"BESTAND\" of <BESTAND>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "lege bestandsnaam in #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include te diep genest"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next in primair bronbestand"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "ongeldige vlag \"%s\" in #line commando"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\" (na #line) is geen positieve integer"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "regelnummer buiten bereik"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" is geen geldige bestandsnaam"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\" (na #) is geen positieve integer"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "ongeldig #%s commando"
-# moet namespace hier ook vertaald worden? dit lijkt me een interne boodschap, dus waarschijnlijk niet echt
-#: directives.c:1112
+# goede vertaling voor 'mismatched'?
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "registratie van pragmas in namespace \"%s\" met niet-overeenkomstige naamexpansie"
+
+# moet namespace hier ook vertaald worden?
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "registratie van pragma \"%s\" met naamexpansie maar geen namespace"
+
+# moet namespace hier ook vertaald worden?
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
-msgstr "registratie van \"%s\" alse zowel pragma als pragma-namespace"
+msgstr "registratie van \"%s\" zowel als pragma en als pragma-namespace"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s is reeds geregistreerd"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s is reeds geregistreerd"
-#: directives.c:1362
+# betere vertaling voor 'handler'?
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "registratie van pragma met NULL als afhandelingsroutine"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once in hoofdbestand"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "ongeldig #pragma GCC poison commando"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "bestaande macro \"%s\" wordt 'vergiftigd'"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header wordt genegeerd buiten een invoegbestand"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "kan bronbestand %s niet vinden"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "huidig bestand is ouder dan %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma verwacht een stringconstante tussen haakjes als argument"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else zonder #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else na #else"
# of gewoon "de conditie"?
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "het conditionele blok begon hier"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif zonder #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif na #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif zonder #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "'(' ontbreekt na predicaat"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "')' ontbreekt als afronding van het antwoord"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "antwoord van het predicaat is leeg"
# dit moet beter kunnen...
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "assertie zonder predicaat"
# ... dit klinkt echt niet - maar wat is hier een beter vertaling voor identifier?
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "predicaat moet een naam zijn"
# is "asserteren" wel een echt woord?
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" opnieuw geasserteerd"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
-msgstr "niet-beëindigde #%s"
+msgstr "niet-beëindigde #%s"
# Dit zou misschien beter 'warning' blijven
#: errors.c:118
@@ -397,165 +411,170 @@
msgstr "%s: %s"
# betere vertaling voor decimal point?
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "teveel komma's in getal"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "ongeldig cijfer \"%c\" in octale constante"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "gebruik van C99 hexadecimale floating-point constante"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "exponent heeft geen cijfers"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "hexadecimale floating-point constante vereist een exponent"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "ongeldige suffix \"%.*s\" aan floating-point constante"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "traditionele C aanvaardt de \"%.*s\" suffix niet"
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "ongeldige suffix \"%.*s\" bij hexadecimale floating-point constante"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "ongeldige suffix \"%.*s\" aan integerconstante"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "gebruik van C99 long long integerconstantes"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "imaginaire constantes zijn een uitbreiding van GCC"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "integerconstante is te groot voor zijn type"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "integerconstante is zo groot dat hij tekenloos is"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "')' ontbreekt na \"defined\""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "de \"defined\" operator verwacht een naam als argument"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\" is een alternatieve schrijfwijze voor \"%s\" in C++)"
# betere vertaling voor "portable"?
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "dit gebruik van \"define\" is mogelijk niet portabel"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "floating-point constante in preprocessor-expressie"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "imaginair getal in preprocessor-expressie"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" is niet gedefinieerd"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "binaire operator ontbreekt voor het \"%s\" token"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "token \"%s\" is niet geldig in preprocessor-expressies"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "expressie ontbreekt tussen '(' en ')'"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if zonder expressie"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "operator '%s' heeft geen rechtse operand"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "operator '%s' heeft geen linkse operand"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " ':' zonder voorafgaande '?'"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "niet-gebalanceerde stack in #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "operator '%u' is onmogelijk"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "')' ontbreekt in expressie"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "'?' zonder daaropvolgende ':'"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "integer-overflow in preprocessor-expressie"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "'(' ontbreekt in expressie"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "de linker operand van \"%s\" verandert van teken indien hij gepromoveerd wordt"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
-msgstr "de rechterer operand van \"%s\" verandert van teken indien hij gepromoveerd wordt"
+msgstr "de rechter operand van \"%s\" verandert van teken indien hij gepromoveerd wordt"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "traditionele C verwerpt de unaire plus-operator"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
-msgstr "comma-operator in operand van #if"
+msgstr "comma operator in operand van #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "deling door nul in `#if'"
@@ -589,43 +608,43 @@
#: files.c:782
#, c-format
msgid "no include path in which to search for %s"
-msgstr "geen include-pad waarin naar %s gewocht kan worden"
+msgstr "geen invoegpad waarin naar %s gezocht kan worden"
-# vertaling voor "include guard"?
+# goede vertaling voor "include guard"?
#: files.c:1071
msgid "Multiple include guards may be useful for:\n"
-msgstr "Meerdere include guards zouden nuttig kunnen zijn voor:\n"
+msgstr "Meerdere invoegbeschermingen zouden nuttig kunnen zijn voor:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t moet een tekenloos type zijn"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "preprocessor-rekensommen hebben een maximale precisie van %lu bits; doelomgeving vereist %lu bits"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
-msgstr "CPP rekensommen moet minstend even precies zijn als een int in de doelomgeving"
+msgstr "CPP rekensommen moet minstens even precies zijn als een int in de doelomgeving"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "char is minder dan 8 bits breed in de doelomgeving"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "wchar_t is smaller dan char in de doelomgeving"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "int is smaller dan char in de doelomgeving"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP half-integer is smaller dan een CPP character"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP kan op deze host geen brede karakterconstantes aan van meer dan %lu bits, maar de doelomgeving vereist %lu bits"
@@ -646,7 +665,7 @@
#: lex.c:298
#, c-format
msgid "trigraph ??%c ignored, use -trigraphs to enable"
-msgstr "trigraph ??%c genegeerd, gebruikt -trigraphs om ondersteuning aan te zetten"
+msgstr "trigraph ??%c genegeerd, gebruik -trigraphs om ondersteuning in te schakelen"
#: lex.c:344
msgid "\"/*\" within comment"
@@ -684,28 +703,33 @@
msgid "null character(s) preserved in literal"
msgstr "nulkarakter(s) in een constante worden behouden"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "sluitend %c teken ontbreekt"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "geen newline aan einde van bestand"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
-msgstr "niet-beëindigde commentaar"
+msgstr "niet-beëindigde commentaar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "commentaar in C++ stijl is niet toegestaan in ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(dit wordt maar een keer gemeld per invoerbestand)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "commentaar gespreid over meerdere lijnen"
# lijkt een vreemde boodschap...
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "kan token %s niet spellen"
@@ -713,7 +737,7 @@
#: line-map.c:313
#, c-format
msgid "In file included from %s:%u"
-msgstr "In bestand ingevoegd door %s:%u"
+msgstr "In bestand ingevoegd vanuit %s:%u"
#: line-map.c:331
#, c-format
@@ -722,118 +746,123 @@
" from %s:%u"
msgstr ""
",\n"
-" door %s:%u"
+" vanuit %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "macro \"%s\" wordt nergens gebruikt"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ongeldige ingebouwde macro \"%s\""
-#: macro.c:217
+# betere vertaling voor 'timestamp'?
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "kan tijdsinformatie van bestand niet bepalen"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "kan datum en tijd niet bepalen"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ongeldige stringconstante, laatste '\\' wordt genegeerd"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "\"%s\" en \"%s\" aan elkaar plakken levert geen geldig preprocessing token op"
# "rest arguments"?
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 verplicht het gebruik van restargumenten"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "macro \"%s\" vereist %u argumenten, maar er werden er slechts %u opgegeven"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "macro \"%s\" kreeg %u argumenten, maar heeft er slechts %u nodig"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
-msgstr "niet-beëindigde argumentenlijst bij oproep van macro \"%s\""
+msgstr "niet-beëindigde argumentenlijst bij oproep van macro \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "functie-achtige macro \"%s\" moet in traditionele C altijd met argumenten gebruikt worden"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "herhaalde macro-parameter \"%s\""
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" mag niet voorkomen in lijst van macro-parameters"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "macro-parameters moet door komma's gescheiden worden"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "parameternaam weggelaten"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "anonieme variadische macros werden door C99 ingevoerd"
# variadic? " met variabele argumentenlijst" is nogal lang...
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C staat het gebruik benoemde variadische macro's niet toe"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "')' ontbreekt in lijst van macro-parameters"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
-msgstr "ISO C99 veriest witruimte na de macronaam"
+msgstr "ISO C99 vereist witruimte na de macronaam"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "witruimte ontbreekt na de macronaam"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' wordt niet gevolgd door de naam van een macro-parameter"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' mag niet voorkomen aan het begin of einde van een macro-expansie"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" opnieuw gedefinieerd"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "dit is de locatie van de eerdere definitie"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "macro-argument \"%s\" zou string gemaakt worden in traditionele C"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "ongeldig hashtype %d in cpp_macro_definition"
@@ -855,7 +884,7 @@
#: pch.c:520
#, c-format
msgid "%s: not used because `%s' is defined"
-msgstr "%s: niet gebruikt omdat \"%s\" gendefinieerd is"
+msgstr "%s: niet gebruikt omdat \"%s\" gedefinieerd is"
#: pch.c:533 pch.c:696
msgid "while reading precompiled header"
Modified: llvm-gcc-4.2/trunk/libcpp/po/rw.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/rw.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/rw.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/rw.po Thu Aug 2 20:00:37 2007
@@ -16,7 +16,7 @@
msgstr ""
"Project-Id-Version: cpplib 3.3\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf at e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw at lists.sourceforge.net>\n"
@@ -171,236 +171,250 @@
msgid "failure to convert %s to %s"
msgstr "OYA GUHINDURA Kuri"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, fuzzy, c-format
msgid "extra tokens at end of #%s directive"
msgstr "Birenga ku Impera Bya"
-#: directives.c:347
+#: directives.c:343
#, fuzzy, c-format
msgid "#%s is a GCC extension"
msgstr "#%sni a Umugereka"
-#: directives.c:359
+#: directives.c:355
#, fuzzy
msgid "suggest not using #elif in traditional C"
msgstr "OYA ikoresha in C"
-#: directives.c:362
+#: directives.c:358
#, fuzzy, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "C Na: i hariho marije"
-#: directives.c:366
+#: directives.c:362
#, fuzzy, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "Bivuye C Na: hariho marije"
-#: directives.c:392
+#: directives.c:388
#, fuzzy
msgid "embedding a directive within macro arguments is not portable"
msgstr "a muri Makoro ingingo ni OYA"
-#: directives.c:412
+#: directives.c:408
#, fuzzy
msgid "style of line directive is a GCC extension"
msgstr "IMISUSIRE Bya Umurongo ni a Umugereka"
-#: directives.c:462
+#: directives.c:458
#, fuzzy, c-format
msgid "invalid preprocessing directive #%s"
msgstr "Sibyo"
-#: directives.c:533
+#: directives.c:524
#, fuzzy
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"Nka a Makoro Izina:"
-#: directives.c:539
+#: directives.c:530
#, fuzzy, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\"Nka a Makoro Izina: Nka ni Mukoresha in C"
-#: directives.c:542
+#: directives.c:533
#, fuzzy, c-format
msgid "no macro name given in #%s directive"
msgstr "Oya Makoro Izina: in"
-#: directives.c:545
+#: directives.c:536
#, fuzzy
msgid "macro names must be identifiers"
msgstr "Makoro Amazina"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr ""
-#: directives.c:641
+#: directives.c:632
#, fuzzy
msgid "missing terminating > character"
msgstr "Ibuze Inyuguti"
-#: directives.c:696
+#: directives.c:687
#, fuzzy, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%sCyangwa"
-#: directives.c:736
+#: directives.c:727
#, fuzzy, c-format
msgid "empty filename in #%s"
msgstr "ubusa IDOSIYE Izina: in"
-#: directives.c:746
+#: directives.c:737
#, fuzzy
msgid "#include nested too deeply"
msgstr "#Gushyiramo"
-#: directives.c:787
+#: directives.c:778
#, fuzzy
msgid "#include_next in primary source file"
msgstr "#in Inkomoko IDOSIYE"
-#: directives.c:813
+#: directives.c:804
#, fuzzy, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "Sibyo Ibendera in Umurongo"
-#: directives.c:865
+#: directives.c:856
#, fuzzy, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\"Nyuma Umurongo ni OYA a Umubare wuzuye"
-#: directives.c:871
+#: directives.c:862
#, fuzzy
msgid "line number out of range"
msgstr "Umurongo Umubare Inyuma Bya Urutonde"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, fuzzy, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\"ni OYA a Byemewe Izina ry'idosiye:"
-#: directives.c:921
+#: directives.c:912
#, fuzzy, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\"Nyuma ni OYA a Umubare wuzuye"
-#: directives.c:1023
+#: directives.c:1014
#, fuzzy, c-format
msgid "invalid #%s directive"
msgstr "Sibyo"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "Nka Byombi a Na a"
+
+#: directives.c:1104
#, fuzzy, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "Nka Byombi a Na a"
-#: directives.c:1115
+#: directives.c:1107
#, fuzzy, c-format
msgid "#pragma %s %s is already registered"
msgstr "#ni"
-#: directives.c:1118
+#: directives.c:1110
#, fuzzy, c-format
msgid "#pragma %s is already registered"
msgstr "#ni"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
#, fuzzy
msgid "#pragma once in main file"
msgstr "#Rimwe in IDOSIYE"
-#: directives.c:1385
+#: directives.c:1373
#, fuzzy
msgid "invalid #pragma GCC poison directive"
msgstr "Sibyo"
-#: directives.c:1394
+#: directives.c:1382
#, fuzzy, c-format
msgid "poisoning existing macro \"%s\""
msgstr "Makoro"
-#: directives.c:1415
+#: directives.c:1403
#, fuzzy
msgid "#pragma system_header ignored outside include file"
msgstr "#Hanze Gushyiramo IDOSIYE"
-#: directives.c:1439
+#: directives.c:1427
#, fuzzy, c-format
msgid "cannot find source file %s"
msgstr "Gushaka Inkomoko"
-#: directives.c:1443
+#: directives.c:1431
#, fuzzy, c-format
msgid "current file is older than %s"
msgstr "KIGEZWEHO IDOSIYE ni"
-#: directives.c:1557
+#: directives.c:1599
#, fuzzy
msgid "_Pragma takes a parenthesized string literal"
msgstr "a Ikurikiranyanyuguti"
-#: directives.c:1658
+#: directives.c:1671
#, fuzzy
msgid "#else without #if"
msgstr "#Ikindi NIBA"
-#: directives.c:1663
+#: directives.c:1676
#, fuzzy
msgid "#else after #else"
msgstr "#Ikindi Nyuma Ikindi"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
#, fuzzy
msgid "the conditional began here"
msgstr "i"
-#: directives.c:1691
+#: directives.c:1704
#, fuzzy
msgid "#elif without #if"
msgstr "#NIBA"
-#: directives.c:1696
+#: directives.c:1709
#, fuzzy
msgid "#elif after #else"
msgstr "#Nyuma Ikindi"
-#: directives.c:1726
+#: directives.c:1739
#, fuzzy
msgid "#endif without #if"
msgstr "#NIBA"
-#: directives.c:1803
+#: directives.c:1816
#, fuzzy
msgid "missing '(' after predicate"
msgstr "Ibuze Nyuma"
-#: directives.c:1818
+#: directives.c:1831
#, fuzzy
msgid "missing ')' to complete answer"
msgstr "Ibuze Kuri Byuzuye"
-#: directives.c:1838
+#: directives.c:1851
#, fuzzy
msgid "predicate's answer is empty"
msgstr "ni ubusa"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr ""
-#: directives.c:1867
+#: directives.c:1880
#, fuzzy
msgid "predicate must be an identifier"
msgstr "Ikiranga"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr ""
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr ""
@@ -430,151 +444,156 @@
msgid "%s: %s"
msgstr "%s:%s"
-#: expr.c:192
+#: expr.c:203
#, fuzzy
msgid "too many decimal points in number"
msgstr "NYACUMI Utudomo in Umubare"
-#: expr.c:212
+#: expr.c:223
#, fuzzy, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "Sibyo in"
-#: expr.c:218
+#: expr.c:229
#, fuzzy
msgid "use of C99 hexadecimal floating constant"
msgstr "Gukoresha Bya Bihindagurika"
-#: expr.c:227
+#: expr.c:238
#, fuzzy
msgid "exponent has no digits"
msgstr "Oya"
-#: expr.c:234
+#: expr.c:245
#, fuzzy
msgid "hexadecimal floating constants require an exponent"
msgstr "Bihindagurika"
-#: expr.c:240
+#: expr.c:251
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "Sibyo Ingereka S ku Bihindagurika"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, fuzzy, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "C i S Ingereka"
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "Sibyo Ingereka S ku Bihindagurika"
+
+#: expr.c:281
#, fuzzy, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "Sibyo Ingereka S ku Umubare wuzuye"
-#: expr.c:283
+#: expr.c:303
#, fuzzy
msgid "use of C99 long long integer constant"
msgstr "Gukoresha Bya Umubare wuzuye"
-#: expr.c:290
+#: expr.c:310
#, fuzzy
msgid "imaginary constants are a GCC extension"
msgstr "NYURABWENGE a Umugereka"
-#: expr.c:376
+#: expr.c:396
#, fuzzy
msgid "integer constant is too large for its type"
msgstr "Umubare wuzuye ni Binini kugirango Ubwoko"
-#: expr.c:388
+#: expr.c:408
#, fuzzy
msgid "integer constant is so large that it is unsigned"
msgstr "Umubare wuzuye ni Binini ni Bitashizweho umukono"
-#: expr.c:470
+#: expr.c:490
#, fuzzy
msgid "missing ')' after \"defined\""
msgstr "Ibuze Nyuma"
-#: expr.c:477
+#: expr.c:497
#, fuzzy
msgid "operator \"defined\" requires an identifier"
msgstr "Mukoresha Ikiranga"
-#: expr.c:485
+#: expr.c:505
#, fuzzy, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\"ni kugirango in C"
-#: expr.c:495
+#: expr.c:515
#, fuzzy
msgid "this use of \"defined\" may not be portable"
msgstr "iyi Gukoresha Bya Gicurasi OYA"
-#: expr.c:534
+#: expr.c:554
#, fuzzy
msgid "floating constant in preprocessor expression"
msgstr "Bihindagurika in imvugo"
-#: expr.c:540
+#: expr.c:560
#, fuzzy
msgid "imaginary number in preprocessor expression"
msgstr "NYURABWENGE Umubare in imvugo"
-#: expr.c:585
+#: expr.c:605
#, fuzzy, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\"ni OYA"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, fuzzy, c-format
msgid "missing binary operator before token \"%s\""
msgstr "Ibuze Nyabibiri Mukoresha Mbere"
-#: expr.c:736
+#: expr.c:753
#, fuzzy, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "ni OYA Byemewe in"
-#: expr.c:753
+#: expr.c:770
#, fuzzy
msgid "missing expression between '(' and ')'"
msgstr "imvugo hagati Na"
-#: expr.c:756
+#: expr.c:773
#, fuzzy
msgid "#if with no expression"
msgstr "#NIBA Na: Oya imvugo"
-#: expr.c:759
+#: expr.c:776
#, fuzzy, c-format
msgid "operator '%s' has no right operand"
msgstr "Mukoresha Oya Iburyo:"
-#: expr.c:764
+#: expr.c:781
#, fuzzy, c-format
msgid "operator '%s' has no left operand"
msgstr "Mukoresha Oya Iburyo:"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr ""
-#: expr.c:817
+#: expr.c:834
#, fuzzy
msgid "unbalanced stack in #if"
msgstr "in NIBA"
-#: expr.c:836
+#: expr.c:853
#, fuzzy, c-format
msgid "impossible operator '%u'"
msgstr "Mukoresha"
-#: expr.c:928
+#: expr.c:943
#, fuzzy
msgid "missing ')' in expression"
msgstr "Ibuze in imvugo"
-#: expr.c:949
+#: expr.c:964
#, fuzzy
msgid "'?' without following ':'"
msgstr ""
@@ -587,37 +606,37 @@
"X- Generator: KBabel 1. 0\n"
"."
-#: expr.c:959
+#: expr.c:974
#, fuzzy
msgid "integer overflow in preprocessor expression"
msgstr "Umubare wuzuye Byarenze urugero in imvugo"
-#: expr.c:964
+#: expr.c:979
#, fuzzy
msgid "missing '(' in expression"
msgstr "Ibuze in imvugo"
-#: expr.c:996
+#: expr.c:1011
#, fuzzy, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "i Ibumoso: Bya Amahinduka IKIMENYETSO Ryari:"
-#: expr.c:1001
+#: expr.c:1016
#, fuzzy, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "i Iburyo: Bya Amahinduka IKIMENYETSO Ryari:"
-#: expr.c:1260
+#: expr.c:1275
#, fuzzy
msgid "traditional C rejects the unary plus operator"
msgstr "C i Guteranya Mukoresha"
-#: expr.c:1359
+#: expr.c:1358
#, fuzzy
msgid "comma operator in operand of #if"
msgstr "Akitso Mukoresha in Bya NIBA"
-#: expr.c:1491
+#: expr.c:1490
#, fuzzy
msgid "division by zero in #if"
msgstr "ku Zeru in NIBA"
@@ -659,42 +678,42 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Gushyiramo Gicurasi kugirango"
-#: init.c:406
+#: init.c:407
#, fuzzy
msgid "cppchar_t must be an unsigned type"
msgstr "Bitashizweho umukono Ubwoko"
-#: init.c:410
+#: init.c:411
#, fuzzy, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "Kinini Bya Intego"
-#: init.c:417
+#: init.c:418
#, fuzzy
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "ku Nka Nka a Intego INT"
-#: init.c:420
+#: init.c:421
#, fuzzy
msgid "target char is less than 8 bits wide"
msgstr "Intego INYUGUTI ni Birutwa 8"
-#: init.c:424
+#: init.c:425
#, fuzzy
msgid "target wchar_t is narrower than target char"
msgstr "Intego ni Intego INYUGUTI"
-#: init.c:428
+#: init.c:429
#, fuzzy
msgid "target int is narrower than target char"
msgstr "Intego INT ni Intego INYUGUTI"
-#: init.c:433
+#: init.c:434
#, fuzzy
msgid "CPP half-integer narrower than CPP character"
msgstr "Umubare wuzuye Inyuguti"
-#: init.c:437
+#: init.c:438
#, fuzzy, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "ku iyi Ubuturo Inyuguti KURI i Intego"
@@ -775,32 +794,37 @@
msgid "null character(s) preserved in literal"
msgstr "NTAGIHARI Inyuguti S in"
-#: lex.c:838
+#: lex.c:650
+#, fuzzy, c-format
+msgid "missing terminating %c character"
+msgstr "Ibuze Inyuguti"
+
+#: lex.c:842
#, fuzzy
msgid "no newline at end of file"
msgstr "Oya ku Impera Bya IDOSIYE"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
#, fuzzy
msgid "unterminated comment"
msgstr "Icyo wongeraho"
-#: lex.c:1001
+#: lex.c:1013
#, fuzzy
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C IMISUSIRE Ibisobanuro OYA in"
-#: lex.c:1003
+#: lex.c:1015
#, fuzzy
msgid "(this will be reported only once per input file)"
msgstr "(iyi Rimwe Iyinjiza IDOSIYE"
-#: lex.c:1008
+#: lex.c:1020
#, fuzzy
msgid "multi-line comment"
msgstr "Umurongo Icyo wongeraho"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr ""
@@ -817,127 +841,132 @@
" from %s:%u"
msgstr ",Bivuye"
-#: macro.c:85
+#: macro.c:83
#, fuzzy, c-format
msgid "macro \"%s\" is not used"
msgstr "Makoro ni OYA"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, fuzzy, c-format
msgid "invalid built-in macro \"%s\""
msgstr "Sibyo in Makoro"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "OYA Itariki Na Igihe"
+
+#: macro.c:253
#, fuzzy
msgid "could not determine date and time"
msgstr "OYA Itariki Na Igihe"
-#: macro.c:387
+#: macro.c:416
#, fuzzy
msgid "invalid string literal, ignoring final '\\'"
msgstr "Sibyo Ikurikiranyanyuguti"
-#: macro.c:470
+#: macro.c:466
#, fuzzy, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "Na OYA a Byemewe"
-#: macro.c:508
+#: macro.c:538
#, fuzzy
msgid "ISO C99 requires rest arguments to be used"
msgstr "ingingo Kuri"
-#: macro.c:513
+#: macro.c:543
#, fuzzy, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "Makoro ingingo"
-#: macro.c:518
+#: macro.c:548
#, fuzzy, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "Makoro ingingo"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, fuzzy, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "Urutonde Makoro"
-#: macro.c:732
+#: macro.c:762
#, fuzzy, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "Umumaro nka Makoro Na: ingingo in C"
-#: macro.c:1248
+#: macro.c:1278
#, fuzzy, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "Gusubiramo Makoro"
-#: macro.c:1294
+#: macro.c:1324
#, fuzzy, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\"Gicurasi OYA Kugaragara in Makoro Urutonde"
-#: macro.c:1302
+#: macro.c:1332
#, fuzzy
msgid "macro parameters must be comma-separated"
msgstr "Makoro Ibigenga Akitso"
-#: macro.c:1319
+#: macro.c:1349
#, fuzzy
msgid "parameter name missing"
msgstr "Izina: Ibuze"
-#: macro.c:1336
+#: macro.c:1366
#, fuzzy
msgid "anonymous variadic macros were introduced in C99"
msgstr "Makoro in"
-#: macro.c:1341
+#: macro.c:1371
#, fuzzy
msgid "ISO C does not permit named variadic macros"
msgstr "C OYA Makoro"
-#: macro.c:1350
+#: macro.c:1380
#, fuzzy
msgid "missing ')' in macro parameter list"
msgstr "Ibuze in Makoro Urutonde"
-#: macro.c:1428
+#: macro.c:1458
#, fuzzy
msgid "ISO C99 requires whitespace after the macro name"
msgstr "C Nyuma i Makoro Izina:"
-#: macro.c:1452
+#: macro.c:1482
#, fuzzy
msgid "missing whitespace after the macro name"
msgstr "C Nyuma i Makoro Izina:"
-#: macro.c:1482
+#: macro.c:1512
#, fuzzy
msgid "'#' is not followed by a macro parameter"
msgstr "'#'ni OYA ku a Makoro"
-#: macro.c:1501
+#: macro.c:1531
#, fuzzy
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##'Kugaragara ku Impera Bya a Makoro"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr ""
-#: macro.c:1604
+#: macro.c:1634
#, fuzzy
msgid "this is the location of the previous definition"
msgstr "iyi ni i Ahantu Bya i Ibanjirije Insobanuro"
-#: macro.c:1654
+#: macro.c:1684
#, fuzzy, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "Makoro in C"
-#: macro.c:1677
+#: macro.c:1707
#, fuzzy, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "Sibyo Ubwoko in"
@@ -4477,10 +4506,6 @@
#~ msgstr "Inzira Izina: Ibuze Nyuma"
#, fuzzy
-#~ msgid "missing terminating %c character"
-#~ msgstr "Ibuze Inyuguti"
-
-#, fuzzy
#~ msgid "unknown string token %s\n"
#~ msgstr "Kitazwi Ikurikiranyanyuguti"
Modified: llvm-gcc-4.2/trunk/libcpp/po/sv.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/sv.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/sv.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/sv.po Thu Aug 2 20:00:37 2007
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: cpplib 4.1.1\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2006-06-24 19:07+0200\n"
"Last-Translator: Göran Uddeborg <goeran at uddeborg.se>\n"
"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -151,213 +151,227 @@
msgid "failure to convert %s to %s"
msgstr "misslyckades att konvertera %s till %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "extra symboler vid slutet av direktivet #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s är en GCC-utvidgning"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "föreslår att inte använda #elif i traditionell C"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "traditionell C ignorerar #%s dör tecknet # är indenterat"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "föreslår att dölja #%s från traditionell C med en indenterad #"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "att bädda in ett direktiv i makroargument är inte portabelt"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "stil på raddirektiv är en GCC-utvidgning"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "ogiltigt preprocessordirektiv #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" kan inte användas som ett makronamn"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\" kan inte användas som ett makronamn eftersom det är en operator i C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "inget makronamn angivet i direktivet #%s"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "makronamn måste vara identifierare"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "avdefinierar \"%s\""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "saknar avslutande tecken >"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s förväntar \"FILNAMN\" eller <FILNAMN>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "tomt filnamn i #%s"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include nästlad för djupt"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next i primär källkodsfil"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "ogiltigt flagga \"%s\" i line-direktiv"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "\"%s\" efter #line är inte ett positivt heltal"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "radnummer utanför möjligt intervall"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" är inte ett giltigt filnamn"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "\"%s\" efter # är inte ett positivt heltal"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "ogiltigt #%s-direktiv"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "registrerar \"%s\" både som ett pragma och ett pragma namespace"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "registrerar \"%s\" både som ett pragma och ett pragma namespace"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s är redan registrerat"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s är redan registrerat"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once i huvudfil"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "ogiltigt GCC-direktiv #pragma poison"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "förgiftar existerande makro \"%s\""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header ignorerat utanför huvudfil"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "kan inte hitta källfil %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "aktuell fil är äldre än %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma tar en strängkonstant inom parenteser"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else utan #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else efter #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "villkorssatsen började här"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif utan #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif efter #else"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif utan #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "saknas '(' efter predikat"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "saknas ')' för att avsluta svaret"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "predikatets svar är tomt"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "försäkran utan predikat"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "predikat måste vara en identifierare"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" omförsäkrat"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "oavslutad #%s"
@@ -383,164 +397,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "för många decimalpunker i tal"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "ogiltigt siffra \"%c\" i oktal konstant"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "användning av hexadecimal flyttalskonstant enligt C99"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "exponenten har inga siffror"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "hexadecimala flyttalskonstanter måste ha en exponent"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "ogiltigt suffix \"%.*s\" på flyttalskonstant"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "traditionell C tillåter inte suffixet \"%.*s\""
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "ogiltigt suffix \"%.*s\" på flyttalskonstant"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "ogiltig ändelse \"%.*s\" på heltalskonstant"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "användning av long long heltalskonstant enligt C99"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "imaginära konstanter är en GCC-utvidgning"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "heltalskonstant är för stor för sin typ"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "heltalskonstant är så stor att den är teckenlös"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "saknar ')' efter \"defined\""
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "operatorn \"defined\" måste ha en identiferare"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(\"%s\" är en alternativ symbol för \"%s\" i C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "denna användning av \"defined\" är kanske inte portabel"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "flyttalskonstant i preprocessoruttryck"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "imaginärt tal i preprocessoruttryck"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" är inte definierad"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "saknad binär operator före symbolen \"%s\""
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "symbolen \"%s\" är inte ett giltigt preprocessoruttryck"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "saknat uttryck mellan \"(\" och \")\""
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if utan uttryck"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "operatorn \"%s\" har ingen högra operand"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "operatorn \"%s\" har ingen vänstra operand"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr "\":\" utan föregående \"?\""
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "obalanserad stack i #if"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "omöjlig operator \"%u\""
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "saknad \")\" i uttryck"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "\"?\" utan följande \":\""
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "heltalsspill i preprocessoruttryck"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "saknad \"(\" i uttryck"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "vänsteroperanden till \"%s\" byter tecken vid befodran"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "högeroperanden till \"%s\" byter tecken vid befodran"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "traditionell C hanterar inte operatorn unärt plus"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "kommaoperator i operand till #if"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "division med noll i #if"
@@ -580,36 +599,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Multipla inkluderingsvakter kan vara användbart för:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t måste vare en teckenlös typ"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "preprocessoraretmetik har en högsta precision på %lu bitar; målet kräver %lu bitar"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP-aritmetik måste vara åtminstone så precis som målets int"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "målets char är mindre än 8 bitar bred"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "målets wchar_t är smalare än målets char"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "målets int är smalare än målets char"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP:s halva heltal är smalare än CPP:s tecken"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "CPP på denna värd kan inte hantera breda teckenkonstanter över %lu bitar, men målet kräver %lu bitar"
@@ -668,27 +687,32 @@
msgid "null character(s) preserved in literal"
msgstr "nolltecken bevarade i konstant"
-#: lex.c:838
+#: lex.c:650
+#, fuzzy, c-format
+msgid "missing terminating %c character"
+msgstr "saknar avslutande tecken >"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "inget nyradstecken vid slutet av filen"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "ej avslutad kommentar"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++ kommentarer tillåts inte i ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(detta rapporteras bara en gång per infil)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "flerradskommentar"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "ostavbar symbol %s"
@@ -707,114 +731,119 @@
",\n"
" från %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "makrot \"%s\" är inte använt"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ogiltigt inbyggt makro \"%s\""
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "kunde inte bstämma datum och tid"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "kunde inte bstämma datum och tid"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ogiltig strängkonstant, inorerar avslutande \"\\\""
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "att sätta ihop \"%s\" och \"%s\" ger inte en giltigt preprocessorsymbol"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 kräver att restargument används"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "makrot \"%s\" kräver %u argument, men endast %u anges"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "makro \"%s\" skickade %u argument, men det tar bara %u"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "oavslutad argumentlista vid anrop av makrot \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "funktionsliknande makrot \"%s\" måste användas med ett argument i traditionell C"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "dubblerad makroparameter \"%s\""
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" får inte förekomma i en makroparameterlista"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "makroparametrar måste avdelas av komman"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "parameternamn saknas"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "anonyma variabla makron introducerades i C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C tillåter inte namngivna variabla makron"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "saknad \")\" i makroparameterlista"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 kräver mellanrum efter makronamnet"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "mellanrum saknas efter makronamn"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "\"#\" följs inte av en makroparameter"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "\"##\" kan inte förekomma vid någon av ändarna av makroexpansionen"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" omdefinierad"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "detta är platsen för den tidigare definitionen"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "makroargumentet \"%s\" skulle bli gjort till sträng i traditionell C"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "ogiltig hash-typ %d i cpp_macro_definition"
Modified: llvm-gcc-4.2/trunk/libcpp/po/tr.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/tr.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/tr.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/tr.po Thu Aug 2 20:00:37 2007
@@ -1,19 +1,19 @@
# Turkish translations for cpplib messages.
-# Copyright (C) 2005 Free Software Foundation, Inc.
-# Nilgün Belma Bugüner <nilgun at buguner.name.tr>, 2001, ..., 2005.
+# Copyright (C) 2007 Free Software Foundation, Inc.
#
+# Nilgün Belma Bugüner <nilgun at buguner.name.tr>, 2001, ..., 2007.
msgid ""
msgstr ""
-"Project-Id-Version: cpplib 4.1-b20051125\n"
+"Project-Id-Version: cpplib 4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2005-11-29 00:01+0200\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-05-23 01:17+0300\n"
"Last-Translator: Nilgün Belma Bugüner <nilgun at buguner.name.tr>\n"
"Language-Team: Turkish <gnu-tr-u12a at lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
+"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: charset.c:654
@@ -150,213 +150,227 @@
msgid "failure to convert %s to %s"
msgstr "`%s' ile `%s' arasında dönüÅüm baÅarısız"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "#%s yönergesinin sonunda fazladan dizgecikler"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s bir GCC uzantısıdır"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "geleneksel C'de #elif kullanılmıyor varsayılır"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "geleneksel C'de girintili # ile #%s yoksayılır"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "geleneksel C'den #%s in saklanması için bir girintili # kullanılmıŠfarzedilir"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "bir yönergenin makro argümanlarla gömülmesi uyarlanabilir deÄil"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "satır yönergesinin tarzı bir GCC özelliÄidir"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "öniÅlem yönergesi #%s geçersiz"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "\"defined\" makro ismi olarak kullanılamaz"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "\"%s\" C++'da bir iÅleç olduÄundan makro ismi olarak kullanılamaz"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "#%s yönergesinde makro ismi verilmemiÅ"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "makro isimleri tanımlayıcılar olmalı"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "tanımsız yapılan \"%s\""
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "sonlandıran > karakteri eksik"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s \"DOSYA\" ya da <DOSYA> gerektirir"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "#%s ile belirtilen dosya boÅ"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include iç içeliÄi çok derin"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "birncil kaynak dosyasında #include_next"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "satır yönergesinde geçersiz \"%s\" seçeneÄi"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "#line'dan sonraki \"%s\" bir pozitif tamsayı deÄil"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "satır numarası kapsam dıÅı"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "\"%s\" geçerli bir dosya ismi deÄil"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "#'dan sonraki \"%s\" bir pozitif tamsayı deÄil"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "#%s yönergesi geçersiz"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "\"%s\" isim-alanındaki pragmalar uyumsuz isim yorumlaması ile kaydediliyor"
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "pragma \"%s\" isim alansız olarak isim yorumlamasıyla kaydediliyor"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "\"%s\" hem pragma hem de pragma isim alanı olarak kaydediliyor"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s zaten kayıtlı"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s zaten kayıtlı"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "pragma NULL eylemci ile kaydediliyor"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "main dosyasında '#pragma once'"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "geçersiz #pragma GCC poison yönergesi"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "zehirlenen mevcut makro \"%s\""
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "baÅlık dosyasının dıÅındaki '#pragma system_header' yoksayıldı"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "%s kaynak dosyası bulunamıyor"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "mevcut dosya %s den daha eski"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma bir parantezli dizge sabiti alır"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#if siz #else"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else den sonra #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "koÅul baÅlangıcı burası"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#if siz #elif "
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#else den sonra #elif"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#if siz #endif"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "dayanaktan sonra '(' eksik"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "yanıtı tamamlayacak ')' eksik"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "dayanakların cevabı boÅ"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "dayanaksız olumlama"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "dayanak bir tanımlayıcı olmalı"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "\"%s\" tekrar olumlanmıÅ"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "sonlandırılmamıŠ#%s"
@@ -382,164 +396,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "sayı içindeki ondalık nokta sayısı çok fazla"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "sekizlik sabit içindeki \"%c\" geçersiz"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "C99 onaltılık gerçel sayı sabit kullanımı"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "üs rakam içermiyor"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "onaltılık gerçel sabitler bir üs gerektirir"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "gerçel sabitin \"%.*s\" soneki geçersiz"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "geleneksel C \"%.*s\" sonekini kullanmaz"
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "onaltılık kayan sabitli \"%.*s\" soneki geçersiz"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "tamsayı sabitte sonek \"%.*s\" soneki geçersiz"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "ISO C99 long long tamsayı sabitleri yasaklar"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "sanal sabitler bir GCC geniÅletmesidir"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "tamsayı sabit, türü için oldukça büyük"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "tamsayı sabit unsigned olarak oldukça büyük"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "\"defined\" dan sonra ')' eksik"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "\"defined\" iÅleci bir tanımlayıcı gerektirir"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(C++'da \"%s\" \"%s\" için bir alternatif dizgeciktir)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "\"defined\" bu kullanımıyla uyarlanabilir olmayabilir"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "öniÅlemci ifadesinde gerçel sayı taÅması"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "öniÅlemci ifadesinde sanal sayı"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "\"%s\" tanımlı deÄil"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "\"%s\" dizgeciÄinden önceki iki terimli iÅleç eksik"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "\"%s\" dizgeciÄi öniÅlemci ifadelerinde geçersizdir"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "'(' ve ')' arasında ifade eksik"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if ifadesiz"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "`%s' iÅlecinin saÄ tarafı yok"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "`%s' iÅlecinin sol terimi yok"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr "':' den önce '?' yok"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "#if ifadesinde karÅılıksız yıÄın"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "iÅleç '%u' imkansız"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "ifadede ')' eksik"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "'?' dan sonra ':' yok"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "öniÅlemci ifadesinde tamsayı taÅması"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "ifadede '(' eksik"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "\"%s\"in soldaki terimi yükseltgenirken iÅaret deÄiÅtiriyor"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "\"%s\"in saÄdaki terimi yükseltgenirken iÅaret deÄiÅtiriyor"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "geleneksel C tekil artı iÅlecini dıÅlar"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "#if'in teriminde virgül"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "#if içinde sıfırla bölme"
@@ -579,36 +598,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Ãoklu include önlemleri aÅaÄıdakiler için kullanıÅlı olabilir:\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t bir usigned tür olmalı"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "öniÅlemci aritmetiÄi %lu bitlik maksimum geniÅliÄe sahip; hedef için %lu bit gerekiyor"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP aritmetiÄi en azından bir hedef int kadar geniÅlikte olmalı "
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "hedef char 8bitlik geniÅlikten küçük"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "hedef wchar_t hedef char'dan daha dar"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "hedef int hedef char'dan daha dar"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP half-integer'ı CPP character'dan daha dar"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "Bu konaktaki CPP %lu bitten büyük karakter sabitleriyle çalıÅamaz, hedef ise %lu bit gerektiriyor"
@@ -667,27 +686,32 @@
msgid "null character(s) preserved in literal"
msgstr "null karakter(ler) sabit içinde saklanmıÅ"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "sonlandıran %c karakteri eksik"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "dosya sonunda satırsonu karakteri yok"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "sonlandırılmamıŠaçıklama"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++ tarzı açıklamalara ISO C90'da izin verilmez"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(her girdi dosyasında sadece bir kere raporlanacaktır)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "çok satırlı açıklama"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "dizgecik %s okunabilir deÄil"
@@ -708,114 +732,118 @@
",\n"
"\t\t%s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "\"%s\" makrosu kullanılmadı"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "geçersiz yerleÅik makro \"%s\""
-#: macro.c:217
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "dosya tarih damgası saptanamadı"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "tarih ve saat saptanamadı"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "geçersiz dizge sabit, son '\\' yoksayılıyor"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "\"%s\" ve \"%s\" geçiÅi geçerli bir öniÅlem dizgeciÄi vermez"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C kalan argümanların kullanılmıŠolmasını gerektirir"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "makro \"%s\" %u argüman gerektiriyor ama sadece %u argüman verilmiÅ"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "makro \"%s\" için %u argüman verilmiŠama tam %u argüman alıyor"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "sonlandırılmamıŠargüman listesi çaÄıran makro \"%s\""
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "iÅlev benzeri makro \"%s\" geleneksel C'de argümanlarla kullanılmalıdır"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "yinelenmiÅ makro parametresi \"%s\""
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "\"%s\" makro parametre listesinde görünmeyebilir"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "makro parametreleri virgüllerle ayrılmıŠolmalı"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "parametre ismi eksik"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "argümanlarının sayısı deÄiÅebilen anonim makrolar C99 da tanıtıldı"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C argümanlarının sayısı deÄiÅebilen isimli makrolara izin vermez"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "makro parametre listesinde ')' eksik"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 makro isminden sonra boÅluk gerektirir"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "makro isminden sonra boÅluk gerekir"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "'#' iÅaretinden sonra bir makro parametresi yok"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "'##' bir makronun her iki ucunda da görünemez"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "\"%s\" yeniden tanımlanmıÅ"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "burası evvelki tanımın yapıldıÄı yer"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "makro argümanı \"%s\" geleneksel C'de dizgelenmiŠolmalıydı"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "cpp_macro_definition içindeki isimli yapı türü %d geçersiz"
@@ -851,6 +879,3 @@
#: traditional.c:912
msgid "syntax error in macro parameter list"
msgstr "makro parametre listesinde sözdizimi hatası"
-
-#~ msgid "unknown escape sequence: '\\%03o'"
-#~ msgstr "bilinmeyen önceleme dizgesi: '\\%03o'"
Modified: llvm-gcc-4.2/trunk/libcpp/po/vi.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/vi.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/vi.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/vi.po Thu Aug 2 20:00:37 2007
@@ -1,19 +1,19 @@
# Vietnamese translation for CPPlib.
-# Copyright © 2006 Free Software Foundation, Inc.
-# Clytie Siddall <clytie at riverland.net.au>, 2005-2006.
+# Copyright © 2007 Free Software Foundation, Inc.
+# Clytie Siddall <clytie at riverland.net.au>, 2005-2007.
msgid ""
msgstr ""
-"Project-Id-Version: cpplib 4.1.1\n"
+"Project-Id-Version: cpplib 4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2006-06-26 21:37+0930\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-05-28 21:25+0930\n"
"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-"X-Generator: LocFactoryEditor 1.6a11\n"
+"X-Generator: LocFactoryEditor 1.6.3b1\n"
#: charset.c:654
#, c-format
@@ -149,213 +149,227 @@
msgid "failure to convert %s to %s"
msgstr "lá»i chuyá»n Äá»i %s sang %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "gặp hiá»u bà i thêm tại kết thúc của chá» thá» #%s"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s là phần má» rá»ng kiá»u GCC"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "khuyên bạn không dùng #elif trong ngôn ngữ C truyá»n thá»ng"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "ngôn ngữ C truyá»n thá»ng bá» qua #%s vá»i # Äược thụt lá»"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "khuyên bạn ẩn #%s ra ngôn ngữ C truyá»n thá»ng bằng # Äược thụt lá»"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "khả nÄng nhúng chá» thá» và o Äá»i sá» vÄ© lá»nh không thá» mạng theo"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "kiá»u chá» thá» dòng là phần má» rá»ng GCC"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "chá» thá» tiá»n xá» lý không hợp lá» #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "không thá» dùng « defined » (Äã xác Äá»nh) nhÆ° là tên vÄ© lá»nh"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "không thá» dùng « %s » nhÆ° là tên vÄ© lá»nh vì nó là toán tá» trong ngôn ngữ C++"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "chá» thá» #%s không chứa tên vÄ© lá»nh"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "má»i tên vÄ© lá»nh phải là bá» nháºn diá»n"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "Äang hủy xác Äá»nh « %s »"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "thiếu ký tự « > » chấm dứt"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s ngá» \"TÃN_TẬP_TIN\" hoặc <TÃN_TẬP_TIN>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "#%s chứa tên táºp tin trá»ng"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "« #include » (bao gá»m) lá»ng nhau quá sâu"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "gặp « #include_next » (bao gá»m kế tiếp) nằm trong táºp tin nguá»n chÃnh"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "gặp cỠkhông hợp lỠ« %s » nằm trong chỠthỠdòng"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "« %s » nằm sau « #line » (dòng) không phải là sỠnguyên dương"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "sá» hiá»u dòng á» ngoà i phạm vi"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "« %s » không phải là tên táºp tin hợp lá»"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "« %s » nằm sau « # » không phải là sỠnguyên dương"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "chá» thá» #%s không hợp lá»"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "viá»c ÄÄng ký các lá»nh mã nguá»n Äiá»u khiá»n trình biên dá»ch (pragma) trong miá»n tên « %s » sai má» rá»ng tên "
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "viá»c ÄÄng ký lá»nh mã nguá»n Äiá»u khiá»n trình biên dá»ch (pragma) « %s » có má» rá»ng tên nhÆ°ng không có miá»n tên"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "Äang ÄÄng ký « %s » là cả lá»nh nguá»n Äiá»u khiá»n trình biá»n dá»ch (pragma), lẫn miá»n tên của lá»nh nguá»n Äiá»u khiá»n trình biên dá»ch."
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "« #pragma %s %s » Äã Äược ÄÄng ký"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "« #pragma %s » Äã Äược ÄÄng ký"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "viá»c ÄÄng ký lá»nh mã nguá»n Äiá»u khiá»n trình biên dá»ch (pragma) có bá» quản lý vô giá trá» (NULL)"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "Có « #pragma » má»t lần trong táºp tin chÃnh"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "gặp chá» thá» vá» hiá»u hóa (poison) GCC « #pragma » không hợp lá»"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "Äang vô hiá»u hóa vÄ© lá»nh tá»n tại « %s »"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "« #pragma system_header » (Äầu trang há» thá»ng) bá» bá» qua á» ngoà i táºp tin bao gá»m"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "không tìm thấy táºp tin nguá»n %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "táºp tin hiá»n thá»i là cÅ© hÆ¡n %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "« _Pragma » nháºn má»t hằng chuá»i Äược Äặt trong ngoặc ÄÆ¡n"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else (nếu không) không có #if (nếu)"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else (nếu không) nằm sau #else"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "bá» Äiá»u kiá»n Äã bắt Äầu á» Äây"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif (nếu không thì nếu) không có #if (nếu)"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif (nếu không thì nếu) nằm sau #else (nếu không)"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif (thôi nếu) không có #if (nếu)"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "thiếu « ( » nằm sau vỠngữ"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "thiếu « ) » Äá» xong trả lá»i"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "vá» ngữ chứa trả lá»i trá»ng"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "sá»± khẳng Äá»nh không có vá» ngữ"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "vá» ngữ phải là bá» nháºn diá»n"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "« %s » Äược khẳng Äá»nh lại"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "#%s chưa chấm dứt"
@@ -381,164 +395,169 @@
msgid "%s: %s"
msgstr "%s: %s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "con sá» chứa quá nhiá»u dấu tháºp phân"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "gặp chữ sỠkhông hợp lỠ« %c » trong hằng bát phân"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "dùng hằng trôi ná»i tháºp lục C99"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "sỠmũ không co chữ sỠnà o"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "má»i hằng trôi ná»i tháºp lục cần Äến má»t sá» mÅ©"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "gặp háºu tá» không hợp lỠ« %.*s » nằm trên hằng trôi ná»i"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "ngôn ngữ C truyá»n thá»ng từ chá»i háºu tỠ« %.*s »"
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "gặp háºu tá» không hợp lỠ« %.*s » có hằng trôi ná»i tháºp lục"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "gặp háºu tá» không hợp lỠ« %.*s » nằm trên hằng sá» nguyên"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "dùng hằng sỠnguyên dà i dà i C99"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "hằng ảo là phần má» rá»ng GCC"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "hằng sá» nguyên quá lá»n cho kiá»u nó"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "hằng sá» nguyên quá lá»n thì không có dấu"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "thiếu « ) » nằm sau « defined » (Äã xác Äá»nh)"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "toán tỠ« defined » (Äã xác Äá»nh) cần Äến bá» nháºn diá»n"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(« %s » là má»t hiá»u bà i thay thế cho « %s » trong ngôn ngữ C++)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "khả nÄng dùng « defined » (Äã xác Äá»nh) có lẽ không thá» mạng theo"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "gặp hằng trôi ná»i nằm trong biá»u thức tiá»n xá» lý"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "gặp sỠảo nằm trong biá»u thức tiá»n xá» lý"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "chÆ°a xác Äá»nh « %s »"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "thiếu toán từ nhá» phân nằm trÆ°á»c hiá»u bà i « %s »"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "hiá»u bà i « %s » không hợp lá» trong biá»u thức tiá»n xá» lý"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "thiếu biá»u thức nằm giữa « ( » và « ) »"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if (nếu) không có biá»u thức"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "toán tỠ« %s » không có tác tỠbên phải"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "toán tỠ« %s » không có tác từ bên trái"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr " Dấu hai chấm « : » không có dấu há»i « ? » Äi trÆ°á»c"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "có Äá»ng không cân bằng trong #if (nếu)"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "toán từ không thỠ« %u »"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "thiếu « ) » nằm trong biá»u thức"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "Dấu há»i « ? » không có dấu hai chấm « : » Äi sau"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "trà n sá» nguyên trong biá»u thức tiá»n xá» lý"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "thiếu « ( » nằm trong biá»u thức"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "tác tá» bên trái của « %s » thay Äá»i dấu (dÆ°Æ¡ng/âm) khi Äược tÄng cấp"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "tác tá» bên phai của « %s » thay Äá»i dấu (dÆ°Æ¡ng/âm) khi ÄÆ°Æ¡c tÄng cấp"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "ngôn ngữ C truyá»n thá»ng từ chá»i toán tá» cá»ng chá» có má»t tác tá»"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "toán tỠdấu phẩy nằm trong tác tỠcủa #if (nếu)"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "chia sỠkhông trong #if (nếu)"
@@ -578,36 +597,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "Nhiá»u Äiá»u bảo vá» bao gá»m có lẽ hiá»u Ãch cho :\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "« cppchar_t » phải là kiá»u không có dấu dÆ°Æ¡ng/âm"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "toán thuáºt của trình tiá»n xá» lý có Äá» chÃnh xác tá»i Äa là %lu bit còn ÄÃch cần Äến %lu bit"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "toán thuáºt CPP phải là Ãt nhất cùng chÃnh xác vá»i « int » ÄÃch"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "« char » ÄÃch có Äá» rá»ng Ãt hÆ¡n 8 bit"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "« wchar_t » ÄÃch có Äá» rá»ng Ãt hÆ¡n « char » ÄÃch"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "« int » ÄÃch có Äá» rá»ng Ãt hÆ¡n « char » ÄÃch"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "nữa sá» nguyên CPP có Äá» rá»ng Ãt hÆ¡n ký tá»± CPP"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "Trên máy nà y, CPP không thá» xá» lý hằng ký tá»± rá»ng hÆ¡n %lu bit, còn ÄÃch cần thiết %lu bit"
@@ -666,27 +685,32 @@
msgid "null character(s) preserved in literal"
msgstr "(các) ký tá»± rá»ng Äược giữ lại trong Äiá»u nghÄ©a chữ"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "thiếu ký tự « %c » chấm dứt"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "không có ký tá»± dòng má»i tại kêt thúc của táºp tin"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "gặp chú thÃch chÆ°a Äược chấm dứt"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "không cho phép chú thÃch kiá»u C++ nằm trong ISO C90"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(Äiá»u nà y sẽ Äược thông báo chá» má»t lần cho má»i táºp tin nháºp)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "gặp chú thÃch Äa dòng"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "gặp hiá»u bà i không thá» chÃnh tả %s"
@@ -705,114 +729,118 @@
",\n"
" từ %s:%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "bá» Äá»i sỠ« %s » không Äược dùng"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "vÄ© lá»nh có sẳn không hợp lỠ« %s »"
-#: macro.c:217
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "không thá» quyết Äá»nh nhãn giá» của táºp tin"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "không thá» quyết Äá»nh ngà y và giá»"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "Äiá»u nghÄ©a chữ chuá»i không hợp lá» nên bá» qua « \\ » cuá»i cùng"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "viá»c dán « %s » và « %s » không ÄÆ°a ra hiá»u bà i tiá»n xá» lý hợp lá»"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 cần Äến Äá»i sá» còn lại trong khá»i Äược dùng"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "vÄ© lá»nh « %s » cần Äến %u Äá»i sá», nhÆ°ng chá» ÄÆ°a ra %u thôi"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "vÄ© lá»nh « %s » Äã gá»i %u Äá»i sá», nhÆ°ng nháºn chá» %u thôi"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "danh sách Äá»i sá» không Äược chấm dứt có gá»i vÄ© lá»nh « %s »"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "vÄ© lá»nh giá»ng hà m sỠ« %s » phải Äược dùng vá»i Äá»i sá» trong ngôn ngữ C truyá»n thá»ng"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "tham sá» vÄ© lá»nh trùng « %s »"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "không cho phép « %s » xuất hiá»n trong danh sách tham sá» vÄ© lá»nh"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "các tham sá» bá» Äá»i sá» phải Äược ngÄn cách bá»i dấu phẩy"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "thiếu tên tham sá»"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "vÄ© lá»nh biến thiên vô danh Äã Äược giá»i thiá»u trong C99"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C không cho phép vÄ© lá»nh biến thiên có tên"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "thiếu « ) » trong danh sách tham sá» bá» Äá»i sá»"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 cần Äến khoảng trắng nằm sau tên vÄ© lá»nh"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "thiếu khoảng trắng nằm sau tên vÄ© lá»nh"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "« # » không có tham sá» vÄ© lá»nh Äi theo"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "không cho phép « ## » nằm hoặc trÆ°á»c hoặc sau sá»± má» rá»ng vÄ© lá»nh"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "« %s » Äã Äược xác Äá»nh lại"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "Äây là vá» trà của lá»i xác Äá»nh trÆ°á»c"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "Äá»i sá» vÄ© lá»nh « %s » nên Äược chuyá»n Äá»i thà nh chuá»i trong ngôn ngữ C truyá»n thá»ng"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "gặp kiá»u bÄm không hợp lá» %d trong « cpp_macro_definition » (lá»i xác Äá»nh vÄ© lá»nh)"
Modified: llvm-gcc-4.2/trunk/libcpp/po/zh_CN.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/zh_CN.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/zh_CN.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/zh_CN.po Thu Aug 2 20:00:37 2007
@@ -5,12 +5,12 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: cpplib 4.1-b20051125\n"
+"Project-Id-Version: cpplib 4.2.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
-"PO-Revision-Date: 2005-12-02 16:28+0800\n"
-"Last-Translator: Meng Jie <zuxyhere at eastday.com>\n"
-"Language-Team: Chinese (simplified) <i18n-translation at lists.linux.net.cn>\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
+"PO-Revision-Date: 2007-06-03 23:21+0800\n"
+"Last-Translator: Meng Jie <zuxy.meng at gmail.com>\n"
+"Language-Team: Chinese (simplified) <translation-team-zh-cn at lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -149,213 +149,227 @@
msgid "failure to convert %s to %s"
msgstr "æ æ³ä» %s 转æ¢å° %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "#%s æ示çæ«å°¾æå¤ä½çæ è¯ç¬¦"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s æ¯ä¸ä¸ª GCC æ©å±"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "建议å¨ä¼ ç» C ä¸ä¸ä½¿ç¨ #elif"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "å½ # æ缩è¿æ¶ä¼ ç» C å¿½ç¥ #%s"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "建议使ç¨ç¼©è¿ç # 以让 #%s å¯¹ä¼ ç» C ä¸å¯è§"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "å°ä¸ä¸ªæ示åµå
¥å®åæ°ä¸æ¯ä¸å¯ç§»æ¤ç"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "line æ示çé£æ ¼æ¯ä¸ä¸ª GCC æ©å±"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "æ æçé¢å¤çæ示 #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "âdefinedâä¸è½è¢«ç¨ä½å®å"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "â%sâä¸è½è¢«ç¨ä½å®åï¼å 为å®æ¯ C++ ä¸çä¸ä¸ªæä½ç¬¦"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "#%s æ示ä¸æªç»åºå®å"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "å®åå¿
é¡»æ¯æ è¯ç¬¦"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "åæ¶å¯¹â%sâçå®ä¹"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "缺å°ç»å°¾ç > å符"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s éè¦ \"FILENAME\" æ <FILENAME>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "#%s ä¸æ件å为空"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include åµå¥è¿æ·±"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next åºç°å¨ä¸»æºæ件ä¸"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "line æ示ä¸ææ æçæ è®°â%sâ"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "#line åçâ%sâä¸æ¯ä¸ä¸ªæ£æ´æ°"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "è¡å·è¶
åºèå´"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "â%sâä¸æ¯ä¸ä¸ªææçæ件å"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "# åçâ%sâä¸æ¯ä¸ä¸ªæ£æ´æ°"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "æ æç #%s æ示"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr "å¨å½å空é´â%sâä¸æ³¨å pragma æ¶å称æ©å±ä¸å¹é
"
+
+#: directives.c:1086
+#, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "pragma â%sâ被注å为ä¸ä¸ªå½åæ©å±ï¼è没æå½å空é´"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "â%sâæ¢è¢«æ³¨å为ä¸ä¸ªpragma å被注å为ä¸ä¸ª pragma å½å空é´"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s å·²ç»è¢«æ³¨å"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s å·²ç»è¢«æ³¨å"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr "pragma 注å为被 NULL å¤ç"
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once åºç°å¨ä¸»æ件ä¸"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "æ æç #pragma GCC poison æ示"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "对已åå¨çå®â%sâææ¯"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_heade å¨å
å«æ件å¤è¢«å¿½ç¥"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "æ¾ä¸å°æºæ件 %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "å½åæ件æ©äº %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma éè¦ä¸ä¸ªæ¬èµ·çå符串åé¢å¸¸é"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else 没æå¹é
ç #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else åºç°å¨ #else å"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "æ¡ä»¶èªæ¤å¼å§"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif 没æå¹é
ç #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif åºç°å¨ #else å"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif 没æå¹é
ç #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "è°è¯å缺å°â(â"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "å®æ´ççæ¡ç¼ºå°â)â"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "è°è¯ççæ¡ä¸ºç©º"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "æè¨å没æè°è¯"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "è°è¯å¿
é¡»æ¯ä¸ä¸ªæ è¯ç¬¦"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "éæè¨â%sâ"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "æªç»æ¢ç #%s"
@@ -381,164 +395,169 @@
msgid "%s: %s"
msgstr "%sï¼%s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "æ°åä¸æ太å¤å°æ°ç¹"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "8 è¿å¶å¸¸éä¸æéæ³å符â%câ"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "ä½¿ç¨ C99 å¼ç 16 è¿å¶æµ®ç¹å¸¸é"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "ææ°é¨å没ææ°å"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "16 è¿å¶æµ®ç¹å¸¸ééè¦ææ°é¨å"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "æµ®ç¹å¸¸éçâ%.*sâåç¼æ æ"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "ä¼ ç» C ä¸æ¥åâ%.*sâåç¼"
-#: expr.c:261
+#: expr.c:268
+#, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "åå
è¿å¶æµ®ç¹å¸¸éçâ%.*sâåç¼æ æ"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "æ´æ°å¸¸éçâ%.*sâåç¼æ æ"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "ä½¿ç¨ C99 long long æ´æ°å¸¸é"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "èæ°å¸¸éæ¯ä¸ä¸ª GCC æ©å±"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "æ´æ°å¸¸éå¼è¶
åºå
¶ç±»å"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "æ´æ°å¸¸é太大ï¼è®¤å®ä¸º unsigned"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "âdefinedâ ååºç°â)â"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "æä½ç¬¦âdefinedâéè¦ä¸ä¸ªæ è¯ç¬¦"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(å¨ C++ ä¸â%sâä¼æ¯â%sâçæ¿ä»£æ è¯ç¬¦)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "使ç¨âdefinedâå¯è½ä¸å©äºç§»æ¤"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "æµ®ç¹å¸¸éåºç°å¨é¢å¤ç表达å¼ä¸"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "é¢å¤ç表达å¼ä¸åºç°èæ°"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "â%sâæªå®ä¹"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "æ è¯ç¬¦â%sâå缺å°äºå
è¿ç®ç¬¦"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "æ è¯ç¬¦â%sâå¨é¢å¤ç表达å¼ä¸æ æ"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "â(âä¸â)âä¹é´ç¼ºå°è¡¨è¾¾å¼"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if å没æ表达å¼"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "æä½ç¬¦â%sâ没æå³æä½æ°"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "æä½ç¬¦â%sâ没æå·¦æä½æ°"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr "â:âå没æâ?â"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "#if ä¸ä¸å¹³è¡¡çå æ "
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "ä¸å¯è½çæä½â%uâ"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "表达å¼ä¸ç¼ºå°â)â"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "â?âå没æâ:â"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "é¢å¤ç表达å¼ä¸æ´æ°æº¢åº"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "表达å¼ä¸ç¼ºå°â(â"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "â%sâçå·¦æä½æ°å¨æåæ¶åæ¢äºç¬¦å·"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "â%sâçå³æä½æ°å¨æåæ¶åæ¢äºç¬¦å·"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "ä¼ ç» C ä¸æ¥ååç® + è¿ç®ç¬¦"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "#if æä½æ°ä¸åºç°éå·"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "#if ä¸ç¨é¶åé¤æ°"
@@ -578,36 +597,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "å¤ä¸ªé²æ¢éå
å«å¯è½å¯¹å
¶æç¨ï¼\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t å¿
é¡»æ¯æ 符å·å"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "é¢å¤çç®æ¯çæé«ç²¾åº¦ä¸º %lu ä½ï¼ç®æ éè¦ %lu ä½"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP ç®æ¯å¿
é¡»è³å°å
·æç®æ int ç精度"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "ç®æ char çäº 8 ä½"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "ç®å½ wchar_t çäºç®æ char"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "ç®æ int çäºç®æ char"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP åæ´æ°çäº CPP å符"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "å¨æ¤å®¿ä¸»æºä¸ï¼CPP ä¸è½å¤çé¿äº %lu ä½ç宽å符常éï¼ä½ç®æ éè¦ %lu ä½"
@@ -666,27 +685,32 @@
msgid "null character(s) preserved in literal"
msgstr "空å符å°ä¿çå¨åé¢å符串ä¸"
-#: lex.c:838
+#: lex.c:650
+#, c-format
+msgid "missing terminating %c character"
+msgstr "缺å°ç»å°¾ç %c å符"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "æ件æªä»¥ç©ºç½è¡ç»æ"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "æªç»æç注é"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++ é£æ ¼ç注éå¨ ISO C90 ä¸ä¸è¢«å
许"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(æ¤è¦å为æ¯ä¸ªè¾å
¥æ件åªæ¥åä¸æ¬¡)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "å¤è¡æ³¨é"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "æ æ³æ¼åºçæ è¯ç¬¦ %s"
@@ -705,114 +729,118 @@
"ï¼\n"
" ä» %sï¼%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "å®â%sâæªè¢«ä½¿ç¨"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "æ æçå
建å®â%sâ"
-#: macro.c:217
+#: macro.c:156
+msgid "could not determine file timestamp"
+msgstr "æ æ³å³å®æ件çæ¶é´æ³"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "æ æ³å³å®æ¥æä¸æ¶é´"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "æ æçåé¢å符串ï¼å¿½ç¥æåçâ\\â"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "æ¯è¿â%sâåâ%sâä¸è½ç»åºä¸ä¸ªææçé¢å¤çæ è¯ç¬¦"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 éè¦ä½¿ç¨å©ä½çåæ°"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "å®â%sâéè¦ %u 个åæ°ï¼ä½åªç»åºäº %u 个"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "å®â%sâä¼ éäº %u 个åæ°ï¼ä½åªéè¦ %u 个"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "è°ç¨å®â%sâæ¶åæ°å表æªç»æ¢"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "类似å½æ°çå®â%sâå¨ä¼ ç» C ä¸å¿
é¡»ä¸åæ°ä¸èµ·ä½¿ç¨"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "éå¤çå®åæ°â%sâ"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "â%sâä¸è½åºç°å¨å®åæ°å表ä¸"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "å®åæ°å¿
é¡»ç±éå·éå¼"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "缺å°å½¢åå"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "å¿åå¯ååæ°å®å¨ C99 ä¸è¢«å¼å
¥"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C ä¸å
许æåçå¯ååæ°å®"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "å¨å®åæ°è¡¨ä¸ç¼ºå°â)â"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 è¦æ±å®ååå¿
é¡»æ空ç½"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "å®åå缺å°ç©ºç½"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "â#âå没æå®åæ°"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "â##âä¸è½åºç°å¨å®å±å¼ç两端"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "â%sâéå®ä¹"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "è¿æ¯å
åå®ä¹çä½ç½®"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "å®åæ°â%sâå°å¨ä¼ ç» C ä¸è¢«å符串å"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "cpp_macro_definition ä¸ææ æçæ£åç±»å %d"
Modified: llvm-gcc-4.2/trunk/libcpp/po/zh_TW.po
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libcpp/po/zh_TW.po?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libcpp/po/zh_TW.po (original)
+++ llvm-gcc-4.2/trunk/libcpp/po/zh_TW.po Thu Aug 2 20:00:37 2007
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: cpplib 4.1.0\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2006-05-24 16:28-0700\n"
+"POT-Creation-Date: 2007-05-13 19:48-0700\n"
"PO-Revision-Date: 2006-03-09 12:37+0800\n"
"Last-Translator: Wei-Lun Chao <chaoweilun at pcmail.com.tw>\n"
"Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
@@ -151,213 +151,227 @@
msgid "failure to convert %s to %s"
msgstr "ç¡æ³å¾ %s è½æå° %s"
-#: directives.c:220 directives.c:246
+#: directives.c:214 directives.c:240
#, c-format
msgid "extra tokens at end of #%s directive"
msgstr "#%s æ令çæ«å°¾æå¤é¤ç符è¨"
-#: directives.c:347
+#: directives.c:343
#, c-format
msgid "#%s is a GCC extension"
msgstr "#%s æ¯ GCC æ´å
åè½"
-#: directives.c:359
+#: directives.c:355
msgid "suggest not using #elif in traditional C"
msgstr "建è°å¨å³çµ± C ä¸ä¸è¦ä½¿ç¨ #elif"
-#: directives.c:362
+#: directives.c:358
#, c-format
msgid "traditional C ignores #%s with the # indented"
msgstr "ç¶ # æ縮ææå³çµ± C å¿½ç¥ #%s"
-#: directives.c:366
+#: directives.c:362
#, c-format
msgid "suggest hiding #%s from traditional C with an indented #"
msgstr "建è°ä½¿ç¨ç¸®æç # ä»¥è® #%s å°å³çµ± C ä¸å¯è¦"
-#: directives.c:392
+#: directives.c:388
msgid "embedding a directive within macro arguments is not portable"
msgstr "å°ä¸åæ令å
§åµæ¼å·¨éåæ¸ä¸æ¯ä¸å¯ç§»æ¤ç"
-#: directives.c:412
+#: directives.c:408
msgid "style of line directive is a GCC extension"
msgstr "line æ令çé¢¨æ ¼æ¯ GCC æ´å
åè½"
-#: directives.c:462
+#: directives.c:458
#, c-format
msgid "invalid preprocessing directive #%s"
msgstr "ç¡æçé å
èçæ令 #%s"
-#: directives.c:533
+#: directives.c:524
msgid "\"defined\" cannot be used as a macro name"
msgstr "ãdefinedãä¸è½åçºå·¨éå"
-#: directives.c:539
+#: directives.c:530
#, c-format
msgid "\"%s\" cannot be used as a macro name as it is an operator in C++"
msgstr "ã%sãä¸è½åçºå·¨éåï¼å çºå®æ¯ C++ ä¸çä¸åéç®å"
-#: directives.c:542
+#: directives.c:533
#, c-format
msgid "no macro name given in #%s directive"
msgstr "#%s æ令ä¸æªçµ¦åºå·¨éå"
-#: directives.c:545
+#: directives.c:536
msgid "macro names must be identifiers"
msgstr "å·¨éåå¿
é æ¯èå¥å"
-#: directives.c:586
+#: directives.c:577
#, c-format
msgid "undefining \"%s\""
msgstr "åæ¶å°ã%sãçå®ç¾©"
-#: directives.c:641
+#: directives.c:632
msgid "missing terminating > character"
msgstr "缺å°çµå°¾ç > åå
"
-#: directives.c:696
+#: directives.c:687
#, c-format
msgid "#%s expects \"FILENAME\" or <FILENAME>"
msgstr "#%s éè¦ \"FILENAME\" æ <FILENAME>"
-#: directives.c:736
+#: directives.c:727
#, c-format
msgid "empty filename in #%s"
msgstr "#%s ä¸æªæ¡å稱çºç©º"
-#: directives.c:746
+#: directives.c:737
msgid "#include nested too deeply"
msgstr "#include å·¢çéæ·±"
-#: directives.c:787
+#: directives.c:778
msgid "#include_next in primary source file"
msgstr "#include_next åºç¾å¨ä¸»ä¾æºæªæ¡ä¸"
-#: directives.c:813
+#: directives.c:804
#, c-format
msgid "invalid flag \"%s\" in line directive"
msgstr "line æ令ä¸æç¡æçæ¨è¨ã%sã"
-#: directives.c:865
+#: directives.c:856
#, c-format
msgid "\"%s\" after #line is not a positive integer"
msgstr "#line å¾çã%sãä¸æ¯ä¸åæ£æ´æ¸"
-#: directives.c:871
+#: directives.c:862
msgid "line number out of range"
msgstr "åèè¶
åºç¯å"
-#: directives.c:884 directives.c:961
+#: directives.c:875 directives.c:952
#, c-format
msgid "\"%s\" is not a valid filename"
msgstr "ã%sãä¸æ¯ä¸åææçæªæ¡å稱"
-#: directives.c:921
+#: directives.c:912
#, c-format
msgid "\"%s\" after # is not a positive integer"
msgstr "# å¾çã%sãä¸æ¯ä¸åæ£æ´æ¸"
-#: directives.c:1023
+#: directives.c:1014
#, c-format
msgid "invalid #%s directive"
msgstr "ç¡æç #%s æ令"
-#: directives.c:1112
+#: directives.c:1077
+#, c-format
+msgid "registering pragmas in namespace \"%s\" with mismatched name expansion"
+msgstr ""
+
+#: directives.c:1086
+#, fuzzy, c-format
+msgid "registering pragma \"%s\" with name expansion and no namespace"
+msgstr "ã%sãæ¢è¢«è¨»åçºä¸å pragma å被註åçºä¸å pragma å½å空é"
+
+#: directives.c:1104
#, c-format
msgid "registering \"%s\" as both a pragma and a pragma namespace"
msgstr "ã%sãæ¢è¢«è¨»åçºä¸å pragma å被註åçºä¸å pragma å½å空é"
-#: directives.c:1115
+#: directives.c:1107
#, c-format
msgid "#pragma %s %s is already registered"
msgstr "#pragma %s %s å·²ç¶è¢«è¨»å"
-#: directives.c:1118
+#: directives.c:1110
#, c-format
msgid "#pragma %s is already registered"
msgstr "#pragma %s å·²ç¶è¢«è¨»å"
-#: directives.c:1362
+#: directives.c:1140
+msgid "registering pragma with NULL handler"
+msgstr ""
+
+#: directives.c:1350
msgid "#pragma once in main file"
msgstr "#pragma once åºç¾å¨ä¸»æªæ¡ä¸"
-#: directives.c:1385
+#: directives.c:1373
msgid "invalid #pragma GCC poison directive"
msgstr "ç¡æç #pragma GCC poison æ令"
-#: directives.c:1394
+#: directives.c:1382
#, c-format
msgid "poisoning existing macro \"%s\""
msgstr "å°å·²åå¨çå·¨éã%sãå æ"
-#: directives.c:1415
+#: directives.c:1403
msgid "#pragma system_header ignored outside include file"
msgstr "#pragma system_header å¨å
å«æªæ¡å¤è¢«å¿½ç¥"
-#: directives.c:1439
+#: directives.c:1427
#, c-format
msgid "cannot find source file %s"
msgstr "æ¾ä¸å°ä¾æºæªæ¡ %s"
-#: directives.c:1443
+#: directives.c:1431
#, c-format
msgid "current file is older than %s"
msgstr "ç®åæªæ¡æ©æ¼ %s"
-#: directives.c:1557
+#: directives.c:1599
msgid "_Pragma takes a parenthesized string literal"
msgstr "_Pragma éè¦ä¸åæ¬èµ·çå串åæ"
-#: directives.c:1658
+#: directives.c:1671
msgid "#else without #if"
msgstr "#else æ²æå¹é
ç #if"
-#: directives.c:1663
+#: directives.c:1676
msgid "#else after #else"
msgstr "#else åºç¾å¨ #else å¾"
-#: directives.c:1665 directives.c:1698
+#: directives.c:1678 directives.c:1711
msgid "the conditional began here"
msgstr "æ¢ä»¶èªæ¤éå§"
-#: directives.c:1691
+#: directives.c:1704
msgid "#elif without #if"
msgstr "#elif æ²æå¹é
ç #if"
-#: directives.c:1696
+#: directives.c:1709
msgid "#elif after #else"
msgstr "#elif åºç¾å¨ #else å¾"
-#: directives.c:1726
+#: directives.c:1739
msgid "#endif without #if"
msgstr "#endif æ²æå¹é
ç #if"
-#: directives.c:1803
+#: directives.c:1816
msgid "missing '(' after predicate"
msgstr "è¿°èªå¾ç¼ºå°ã(ã"
-#: directives.c:1818
+#: directives.c:1831
msgid "missing ')' to complete answer"
msgstr "å®æ´ççæ¡ç¼ºå°ã)ã"
-#: directives.c:1838
+#: directives.c:1851
msgid "predicate's answer is empty"
msgstr "è¿°èªççæ¡çºç©º"
-#: directives.c:1865
+#: directives.c:1878
msgid "assertion without predicate"
msgstr "å¤å®èªå¾æ²æè¿°èª"
-#: directives.c:1867
+#: directives.c:1880
msgid "predicate must be an identifier"
msgstr "è¿°èªå¿
é æ¯ä¸åèå¥å"
-#: directives.c:1953
+#: directives.c:1966
#, c-format
msgid "\"%s\" re-asserted"
msgstr "å·²åå¤å®ã%sã"
-#: directives.c:2177
+#: directives.c:2190
#, c-format
msgid "unterminated #%s"
msgstr "æªçµæ¢ç #%s"
@@ -383,164 +397,169 @@
msgid "%s: %s"
msgstr "%sï¼%s"
-#: expr.c:192
+#: expr.c:203
msgid "too many decimal points in number"
msgstr "æ¸åä¸æ太å¤å°æ¸é»"
-#: expr.c:212
+#: expr.c:223
#, c-format
msgid "invalid digit \"%c\" in octal constant"
msgstr "å
«é²ä½å¸¸æ¸ä¸æç¡æåå
ã%cã"
-#: expr.c:218
+#: expr.c:229
msgid "use of C99 hexadecimal floating constant"
msgstr "ä½¿ç¨ C99 å¼çåå
é²ä½æµ®é»å¸¸æ¸"
-#: expr.c:227
+#: expr.c:238
msgid "exponent has no digits"
msgstr "ææ¸é¨åæ²ææ¸å"
-#: expr.c:234
+#: expr.c:245
msgid "hexadecimal floating constants require an exponent"
msgstr "åå
é²ä½æµ®é»å¸¸æ¸éè¦ææ¸é¨å"
-#: expr.c:240
+#: expr.c:251
#, c-format
msgid "invalid suffix \"%.*s\" on floating constant"
msgstr "æµ®é»å¸¸æ¸çã%.*sãåå°¾ç¡æ"
-#: expr.c:250 expr.c:275
+#: expr.c:261 expr.c:295
#, c-format
msgid "traditional C rejects the \"%.*s\" suffix"
msgstr "å³çµ± C ä¸æ¥åã%.*sãåå°¾"
-#: expr.c:261
+#: expr.c:268
+#, fuzzy, c-format
+msgid "invalid suffix \"%.*s\" with hexadecimal floating constant"
+msgstr "æµ®é»å¸¸æ¸çã%.*sãåå°¾ç¡æ"
+
+#: expr.c:281
#, c-format
msgid "invalid suffix \"%.*s\" on integer constant"
msgstr "æ´æ¸å¸¸æ¸çã%.*sãåå°¾ç¡æ"
-#: expr.c:283
+#: expr.c:303
msgid "use of C99 long long integer constant"
msgstr "ä½¿ç¨ C99 long long æ´æ¸å¸¸æ¸"
-#: expr.c:290
+#: expr.c:310
msgid "imaginary constants are a GCC extension"
msgstr "èæ¸å¸¸æ¸æ¯ä¸å GCC æ´å
åè½"
-#: expr.c:376
+#: expr.c:396
msgid "integer constant is too large for its type"
msgstr "æ´æ¸å¸¸æ¸å¼è¶
åºå
¶é¡å"
-#: expr.c:388
+#: expr.c:408
msgid "integer constant is so large that it is unsigned"
msgstr "æ´æ¸å¸¸æ¸å¤ªå¤§ï¼èªå®çº unsigned"
-#: expr.c:470
+#: expr.c:490
msgid "missing ')' after \"defined\""
msgstr "ãdefinedã å¾ç¼ºå°ã)ã"
-#: expr.c:477
+#: expr.c:497
msgid "operator \"defined\" requires an identifier"
msgstr "éç®åãdefinedãéè¦ä¸åèå¥å"
-#: expr.c:485
+#: expr.c:505
#, c-format
msgid "(\"%s\" is an alternative token for \"%s\" in C++)"
msgstr "(å¨ C++ ä¸ã%sãææ¯ã%sãçæ¿ä»£èå¥å)"
-#: expr.c:495
+#: expr.c:515
msgid "this use of \"defined\" may not be portable"
msgstr "使ç¨ãdefinedãå¯è½ä¸å©æ¼ç§»æ¤"
-#: expr.c:534
+#: expr.c:554
msgid "floating constant in preprocessor expression"
msgstr "æµ®é»å¸¸æ¸åºç¾å¨é å
èçéç®å¼ä¸"
-#: expr.c:540
+#: expr.c:560
msgid "imaginary number in preprocessor expression"
msgstr "é å
èçéç®å¼ä¸åºç¾èæ¸"
-#: expr.c:585
+#: expr.c:605
#, c-format
msgid "\"%s\" is not defined"
msgstr "ã%sãæªå®ç¾©"
-#: expr.c:716 expr.c:745
+#: expr.c:733 expr.c:762
#, c-format
msgid "missing binary operator before token \"%s\""
msgstr "èå¥åã%sãå缺å°äºå
éç®å"
-#: expr.c:736
+#: expr.c:753
#, c-format
msgid "token \"%s\" is not valid in preprocessor expressions"
msgstr "èå¥åã%sãå¨é å
èçéç®å¼ä¸ç¡æ"
-#: expr.c:753
+#: expr.c:770
msgid "missing expression between '(' and ')'"
msgstr "ã(ãèã)ãä¹é缺å°éç®å¼"
-#: expr.c:756
+#: expr.c:773
msgid "#if with no expression"
msgstr "#if å¾æ²æéç®å¼"
-#: expr.c:759
+#: expr.c:776
#, c-format
msgid "operator '%s' has no right operand"
msgstr "éç®åã%sãæ²æå³éç®å
"
-#: expr.c:764
+#: expr.c:781
#, c-format
msgid "operator '%s' has no left operand"
msgstr "éç®åã%sãæ²æå·¦éç®å
"
-#: expr.c:790
+#: expr.c:807
msgid " ':' without preceding '?'"
msgstr "ã:ãåæ²æã?ã"
-#: expr.c:817
+#: expr.c:834
msgid "unbalanced stack in #if"
msgstr "#if ä¸ä¸å¹³è¡¡çå ç"
-#: expr.c:836
+#: expr.c:853
#, c-format
msgid "impossible operator '%u'"
msgstr "ä¸å¯è½çéç®åã%uã"
-#: expr.c:928
+#: expr.c:943
msgid "missing ')' in expression"
msgstr "éç®å¼ä¸ç¼ºå°ã)ã"
-#: expr.c:949
+#: expr.c:964
msgid "'?' without following ':'"
msgstr "ã?ãå¾æ²æã:ã"
-#: expr.c:959
+#: expr.c:974
msgid "integer overflow in preprocessor expression"
msgstr "é å
èçéç®å¼ä¸æ´æ¸æº¢åº"
-#: expr.c:964
+#: expr.c:979
msgid "missing '(' in expression"
msgstr "éç®å¼ä¸ç¼ºå°ã(ã"
-#: expr.c:996
+#: expr.c:1011
#, c-format
msgid "the left operand of \"%s\" changes sign when promoted"
msgstr "ã%sãçå·¦éç®å
å¨æåæè®æäºç¬¦è"
-#: expr.c:1001
+#: expr.c:1016
#, c-format
msgid "the right operand of \"%s\" changes sign when promoted"
msgstr "ã%sãçå³éç®å
å¨æåæè®æäºç¬¦è"
-#: expr.c:1260
+#: expr.c:1275
msgid "traditional C rejects the unary plus operator"
msgstr "å³çµ± C ä¸æ¥åå®å
+ éç®å"
-#: expr.c:1359
+#: expr.c:1358
msgid "comma operator in operand of #if"
msgstr "#if éç®å
ä¸åºç¾éè"
-#: expr.c:1491
+#: expr.c:1490
msgid "division by zero in #if"
msgstr "#if ä¸ç¨é¶åé¤æ¸"
@@ -580,36 +599,36 @@
msgid "Multiple include guards may be useful for:\n"
msgstr "å¤åé²æ¢éå
å«å¯è½å°å
¶æç¨ï¼\n"
-#: init.c:406
+#: init.c:407
msgid "cppchar_t must be an unsigned type"
msgstr "cppchar_t å¿
é æ¯ç¡èé¡å"
-#: init.c:410
+#: init.c:411
#, c-format
msgid "preprocessor arithmetic has maximum precision of %lu bits; target requires %lu bits"
msgstr "é å
èçç®è¡çæé«ç²¾åº¦çº %lu ä½ï¼ç®æ¨éè¦ %lu ä½"
-#: init.c:417
+#: init.c:418
msgid "CPP arithmetic must be at least as precise as a target int"
msgstr "CPP ç®è¡å¿
é è³å°å
·æç®æ¨ int ç精度"
-#: init.c:420
+#: init.c:421
msgid "target char is less than 8 bits wide"
msgstr "ç®æ¨ char çæ¼ 8 ä½"
-#: init.c:424
+#: init.c:425
msgid "target wchar_t is narrower than target char"
msgstr "ç®æ¨ wchar_t çæ¼ç®æ¨ char"
-#: init.c:428
+#: init.c:429
msgid "target int is narrower than target char"
msgstr "ç®æ¨ int çæ¼ç®æ¨ char"
-#: init.c:433
+#: init.c:434
msgid "CPP half-integer narrower than CPP character"
msgstr "CPP åæ´æ¸çæ¼ CPP åå
"
-#: init.c:437
+#: init.c:438
#, c-format
msgid "CPP on this host cannot handle wide character constants over %lu bits, but the target requires %lu bits"
msgstr "å¨æ¤å®¿ä¸»æ©ä¸ï¼CPP ä¸è½èçé·æ¼ %lu ä½ç寬åå
常æ¸ï¼ä½ç®æ¨éè¦ %lu ä½"
@@ -668,27 +687,32 @@
msgid "null character(s) preserved in literal"
msgstr "空åå
å°ä¿çå¨åæä¸"
-#: lex.c:838
+#: lex.c:650
+#, fuzzy, c-format
+msgid "missing terminating %c character"
+msgstr "缺å°çµå°¾ç > åå
"
+
+#: lex.c:842
msgid "no newline at end of file"
msgstr "æªæ¡æªä»¥ç©ºç½åçµæ"
-#: lex.c:990 traditional.c:162
+#: lex.c:1002 traditional.c:162
msgid "unterminated comment"
msgstr "æªçµçµç註é"
-#: lex.c:1001
+#: lex.c:1013
msgid "C++ style comments are not allowed in ISO C90"
msgstr "C++ é¢¨æ ¼ç註éå¨ ISO C90 ä¸ä¸è¢«å
許"
-#: lex.c:1003
+#: lex.c:1015
msgid "(this will be reported only once per input file)"
msgstr "(æ¤è¦åçºæ¯å輸å
¥æªæ¡åªå ±åä¸æ¬¡)"
-#: lex.c:1008
+#: lex.c:1020
msgid "multi-line comment"
msgstr "å¤å註é"
-#: lex.c:1331
+#: lex.c:1333
#, c-format
msgid "unspellable token %s"
msgstr "ç¡æ³æ¼åºçèå¥å %s"
@@ -707,114 +731,119 @@
"ï¼\n"
" å¾ %sï¼%u"
-#: macro.c:85
+#: macro.c:83
#, c-format
msgid "macro \"%s\" is not used"
msgstr "å·¨éã%sãæªè¢«ä½¿ç¨"
-#: macro.c:124 macro.c:283
+#: macro.c:122 macro.c:312
#, c-format
msgid "invalid built-in macro \"%s\""
msgstr "ç¡æçå
§å»ºå·¨éã%sã"
-#: macro.c:217
+#: macro.c:156
+#, fuzzy
+msgid "could not determine file timestamp"
+msgstr "ç¡æ³æ±ºå®æ¥æèæé"
+
+#: macro.c:253
msgid "could not determine date and time"
msgstr "ç¡æ³æ±ºå®æ¥æèæé"
-#: macro.c:387
+#: macro.c:416
msgid "invalid string literal, ignoring final '\\'"
msgstr "ç¡æçåæå串ï¼å¿½ç¥æå¾çã\\ã"
-#: macro.c:470
+#: macro.c:466
#, c-format
msgid "pasting \"%s\" and \"%s\" does not give a valid preprocessing token"
msgstr "ç²è²¼ã%sãåã%sãä¸è½çµ¦åºä¸åææçé å
èçèå¥å"
-#: macro.c:508
+#: macro.c:538
msgid "ISO C99 requires rest arguments to be used"
msgstr "ISO C99 éè¦ä½¿ç¨å©é¤çå¼æ¸"
-#: macro.c:513
+#: macro.c:543
#, c-format
msgid "macro \"%s\" requires %u arguments, but only %u given"
msgstr "å·¨éã%sãéè¦ %u åå¼æ¸ï¼ä½åªçµ¦åºäº %u å"
-#: macro.c:518
+#: macro.c:548
#, c-format
msgid "macro \"%s\" passed %u arguments, but takes just %u"
msgstr "å·¨éã%sãå³éäº %u åå¼æ¸ï¼ä½åªéè¦ %u å"
-#: macro.c:629 traditional.c:675
+#: macro.c:659 traditional.c:675
#, c-format
msgid "unterminated argument list invoking macro \"%s\""
msgstr "å¼å«å·¨éã%sãæå¼æ¸æ¸
å®æªçµæ¢"
-#: macro.c:732
+#: macro.c:762
#, c-format
msgid "function-like macro \"%s\" must be used with arguments in traditional C"
msgstr "é¡ä¼¼å½å¼çå·¨éã%sãå¨å³çµ± C ä¸å¿
é èå¼æ¸ä¸èµ·ä½¿ç¨"
-#: macro.c:1248
+#: macro.c:1278
#, c-format
msgid "duplicate macro parameter \"%s\""
msgstr "éè¤çå·¨éåæ¸ã%sã"
-#: macro.c:1294
+#: macro.c:1324
#, c-format
msgid "\"%s\" may not appear in macro parameter list"
msgstr "ã%sãä¸è½åºç¾å¨å·¨éåæ¸æ¸
å®ä¸"
-#: macro.c:1302
+#: macro.c:1332
msgid "macro parameters must be comma-separated"
msgstr "å·¨éåæ¸å¿
é ç±éèéé"
-#: macro.c:1319
+#: macro.c:1349
msgid "parameter name missing"
msgstr "缺å°åæ¸å"
-#: macro.c:1336
+#: macro.c:1366
msgid "anonymous variadic macros were introduced in C99"
msgstr "å¿åå¯è®åæ¸å·¨éå¨ C99 ä¸è¢«å¼å
¥"
-#: macro.c:1341
+#: macro.c:1371
msgid "ISO C does not permit named variadic macros"
msgstr "ISO C ä¸å
許å
·åçå¯è®åæ¸å·¨é"
-#: macro.c:1350
+#: macro.c:1380
msgid "missing ')' in macro parameter list"
msgstr "å¨å·¨éåæ¸è¡¨ä¸ç¼ºå°ã)ã"
-#: macro.c:1428
+#: macro.c:1458
msgid "ISO C99 requires whitespace after the macro name"
msgstr "ISO C99 è¦æ±å·¨éåå¾å¿
é æ空ç½"
-#: macro.c:1452
+#: macro.c:1482
msgid "missing whitespace after the macro name"
msgstr "å·¨éåå¾ç¼ºå°ç©ºç½"
-#: macro.c:1482
+#: macro.c:1512
msgid "'#' is not followed by a macro parameter"
msgstr "ã#ãå¾æ²æå·¨éåæ¸"
-#: macro.c:1501
+#: macro.c:1531
msgid "'##' cannot appear at either end of a macro expansion"
msgstr "ã##ãä¸è½åºç¾å¨å·¨éå±éçå
©ç«¯"
-#: macro.c:1599
+#: macro.c:1629
#, c-format
msgid "\"%s\" redefined"
msgstr "ã%sãéå®ç¾©"
-#: macro.c:1604
+#: macro.c:1634
msgid "this is the location of the previous definition"
msgstr "éæ¯å
åå®ç¾©çä½ç½®"
-#: macro.c:1654
+#: macro.c:1684
#, c-format
msgid "macro argument \"%s\" would be stringified in traditional C"
msgstr "å·¨éå¼æ¸ã%sãå°å¨å³çµ± C ä¸è¢«å串å"
-#: macro.c:1677
+#: macro.c:1707
#, c-format
msgid "invalid hash type %d in cpp_macro_definition"
msgstr "cpp_macro_definition ä¸æç¡æçéæ¹é¡å %d"
Modified: llvm-gcc-4.2/trunk/libdecnumber/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libdecnumber/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libdecnumber/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/libdecnumber/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,7 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/libgomp/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libgomp/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libgomp/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/libgomp/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,26 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
+2007-07-02 Jakub Jelinek <jakub at redhat.com>
+
+ PR libgomp/32468
+ * sections.c (GOMP_parallel_sections_start): Only decrease
+ number of threads to COUNT if dyn_var is true.
+ * testsuite/libgomp.c/pr32468.c: New test.
+
+2007-07-02 Rainer Orth <ro at TechFak.Uni-Bielefeld.DE>
+
+ PR libgomp/26308
+ * config/posix/lock.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX.
+
+2007-06-21 Jakub Jelinek <jakub at redhat.com>
+
+ PR middle-end/32362
+ * testsuite/libgomp.c/pr32362-1.c: New test.
+ * testsuite/libgomp.c/pr32362-2.c: New test.
+ * testsuite/libgomp.c/pr32362-3.c: New test.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/libgomp/config/posix/lock.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libgomp/config/posix/lock.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libgomp/config/posix/lock.c (original)
+++ llvm-gcc-4.2/trunk/libgomp/config/posix/lock.c Thu Aug 2 20:00:37 2007
@@ -33,8 +33,12 @@
to do better and streamline the locking as well as reduce the size
of the types exported. */
-/* We need Unix98 extensions to get recursive locks. */
+/* We need Unix98 extensions to get recursive locks. On Tru64 UNIX V4.0F,
+ the declarations are available without _XOPEN_SOURCE, which actually
+ breaks compilation. */
+#ifndef __osf__
#define _XOPEN_SOURCE 500
+#endif
#include "libgomp.h"
Modified: llvm-gcc-4.2/trunk/libgomp/sections.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libgomp/sections.c?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libgomp/sections.c (original)
+++ llvm-gcc-4.2/trunk/libgomp/sections.c Thu Aug 2 20:00:37 2007
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005 Free Software Foundation, Inc.
+/* Copyright (C) 2005, 2007 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth at redhat.com>.
This file is part of the GNU OpenMP Library (libgomp).
@@ -106,7 +106,7 @@
struct gomp_work_share *ws;
num_threads = gomp_resolve_num_threads (num_threads);
- if (num_threads > count)
+ if (gomp_dyn_var && num_threads > count)
num_threads = count;
ws = gomp_new_work_share (false, num_threads);
Modified: llvm-gcc-4.2/trunk/libiberty/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/libiberty/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/libiberty/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/libiberty/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,11 +1,15 @@
- # APPLE LOCAL begin mainline 2007-05-09 5173149
2007-05-05 Geoffrey Keating <geoffk at apple.com>
* cp-demangle.c (d_name): Detect local-source-name.
(d_prefix): Likewise.
(d_unqualified_name): Implement local-source-name.
- # APPLE LOCAL end mainline 2007-05-09 5173149
+/* APPLE LOCAL merge marger */
+/* Stuff above is only in mainline, not the 4.2 branch */
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
2007-05-13 Release Manager
* GCC 4.2.0 released.
Modified: llvm-gcc-4.2/trunk/maintainer-scripts/ChangeLog
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/maintainer-scripts/ChangeLog?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/maintainer-scripts/ChangeLog (original)
+++ llvm-gcc-4.2/trunk/maintainer-scripts/ChangeLog Thu Aug 2 20:00:37 2007
@@ -1,3 +1,11 @@
+2007-07-19 Release Manager
+
+ * GCC 4.2.1 released.
+
+2007-06-28 Mike Stump <mrs at apple.com>
+
+ * gcc_release: Update for Objective-C++.
+
2007-05-28 Mark Mitchell <mark at codesourcery.com>
* gcc_release: Adjust placement of release candidates.
Modified: llvm-gcc-4.2/trunk/maintainer-scripts/gcc_release
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/maintainer-scripts/gcc_release?rev=40773&r1=40772&r2=40773&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/maintainer-scripts/gcc_release (original)
+++ llvm-gcc-4.2/trunk/maintainer-scripts/gcc_release Thu Aug 2 20:00:37 2007
@@ -583,7 +583,7 @@
FORTRAN_DIRS="gcc/f libf2c"
FORTRAN95_DIRS="gcc/fortran libgfortran"
JAVA_DIRS="gcc/java libjava libffi fastjar zlib boehm-gc"
-OBJECTIVEC_DIRS="gcc/objc libobjc"
+OBJECTIVEC_DIRS="gcc/objc gcc/objcp libobjc"
TESTSUITE_DIRS="gcc/testsuite"
# Non-zero if this is the final release, rather than a prerelease.
More information about the llvm-commits
mailing list