]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Replace use of __amd64__ with VGA_amd64.
authorNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 15:09:28 +0000 (15:09 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sat, 18 Jun 2005 15:09:28 +0000 (15:09 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3936

coregrind/m_libcsignal.c

index b62e4887d734c0524eee34848470a92c1f3ef8a5..d32d7ee6c9a54c413b18d864d328b4b45443519e 100644 (file)
@@ -224,7 +224,7 @@ Int VG_(sigpending) ( vki_sigset_t* set )
 // __NR_rt_sigpending.  This function will have to be abstracted in some
 // way to account for this.  In the meantime, the easy option is to forget
 // about it for AMD64 until it's needed.
-#ifdef __amd64__
+#if defined(VGA_amd64)
    I_die_here;
 #else
    SysRes res = VG_(do_syscall1)(__NR_sigpending, (UWord)set);