summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-01-19 01:02:19 +0000
committerUlrich Drepper <drepper@redhat.com>2007-01-19 01:02:19 +0000
commit299f7b0ffced429e0ff8fc51ce301c3a7d294bbe (patch)
treec464948a46d0e34d73233475d78e78a3377c4ec3 /scripts
parent10ccaa5caec00dc354379fce317a2dd2f3a448de (diff)
* scripts/gen-as-const.awk: Add cast to long to avoid int promotion
of values on 64-bit platforms which are too large.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/gen-as-const.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-as-const.awk b/scripts/gen-as-const.awk
index c529fa42c8..bc3c47fb73 100644
--- a/scripts/gen-as-const.awk
+++ b/scripts/gen-as-const.awk
@@ -38,7 +38,7 @@ NF > 1 {
if (test)
print " TEST (" name ", \"" FILENAME ":" FNR "\", " $0 ")";
else
- printf "asm (\"@@@name@@@%s@@@value@@@%%0@@@end@@@\" : : \"i\" (%s));\n",
+ printf "asm (\"@@@name@@@%s@@@value@@@%%0@@@end@@@\" : : \"i\" ((long) %s));\n",
name, $0;
}