From a468da6449c8c0083fe157c68ad2ecdb04e49222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 16 Aug 2004 16:18:48 +0000 Subject: [PATCH] Fixed compilation error with GCC 2.95. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8595 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/boot/platform/openfirmware/arch/ppc/mmu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/boot/platform/openfirmware/arch/ppc/mmu.cpp b/src/kernel/boot/platform/openfirmware/arch/ppc/mmu.cpp index 448ae053a2..4c8d8ed9be 100644 --- a/src/kernel/boot/platform/openfirmware/arch/ppc/mmu.cpp +++ b/src/kernel/boot/platform/openfirmware/arch/ppc/mmu.cpp @@ -1,6 +1,6 @@ /* ** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Distributed under the terms of the Haiku License. */ @@ -498,7 +498,7 @@ invalidate_tlb(void) addr_t address = 0; for (uint32 i = 0; i < 0x100000; i++) { - asm volatile("tlbie %0" :: "r" (address)); + asm volatile("tlbie %0" : : "r" (address)); address += B_PAGE_SIZE; } tlbsync();