]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: mark global var as NOPTR
authorDmitriy Vyukov <dvyukov@google.com>
Tue, 29 Jul 2014 11:18:01 +0000 (15:18 +0400)
committerDmitriy Vyukov <dvyukov@google.com>
Tue, 29 Jul 2014 11:18:01 +0000 (15:18 +0400)
LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/120280044

src/pkg/runtime/softfloat_arm.c

index 41ce8bd7535ce25865e4140ff3d68408cabc47ae..6b371601140166afe6cb2ed3bf8a328ea7d4d470 100644 (file)
@@ -90,6 +90,7 @@ fstatus(bool nan, int32 cmp)
 // conditions array record the required CPSR cond field for the
 // first 5 pairs of conditional execution opcodes
 // higher 4 bits are must set, lower 4 bits are must clear
+#pragma dataflag NOPTR
 static const uint8 conditions[10/2] = {
        [0/2] = (FLAGS_Z >> 24) | 0, // 0: EQ (Z set), 1: NE (Z clear)
        [2/2] = (FLAGS_C >> 24) | 0, // 2: CS/HS (C set), 3: CC/LO (C clear)