]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2015-09-19 Andrew Pinski <apinski@cavium.com>
authorAndrew Pinski <apinski@cavium.com>
Sat, 19 Sep 2015 22:16:43 +0000 (22:16 +0000)
committerAndrew Pinski <apinski@cavium.com>
Sat, 19 Sep 2015 22:16:43 +0000 (22:16 +0000)
        * gdb.arch/aarch64-atomic-inst.c: Use unsigned long long
        instead of unsigned long to fix for ILP32.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.arch/aarch64-atomic-inst.c

index 2a1cc072757381b30884d76a5c9187d75c587a8b..7320b9546e923179a393a87a52e77da607392885 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-19  Andrew Pinski  <apinski@cavium.com>
+
+       * gdb.arch/aarch64-atomic-inst.c: Use unsigned long long
+       instead of unsigned long to fix for ILP32.
+
 2015-09-03  Pierre-Marie de Rodat  <derodat@adacore.com>
 
        * gdb.ada/funcall_char.exp: New testcase.
index 2d9c4f31ea379a79a55aa8beb067bda146a3509b..0c31ce6abab8618b710696fdd455458c0d0ed032 100644 (file)
@@ -17,8 +17,8 @@
 
 int main(void)
 {
-  unsigned long tmp, cond;
-  unsigned long dword = 0;
+  unsigned long long tmp, cond;
+  unsigned long long dword = 0;
 
   /* Test that we can step over ldxr/stxr. This sequence should step from
      ldxr to the following __asm __volatile.  */