From 64ccfbf0a2337f191b16d1126aa096fc27dd98f7 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Mon, 14 Dec 2015 16:07:50 +0100 Subject: bug 17752, add builtin_mr for PowerPC --- powerpc/Machregs.v | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'powerpc/Machregs.v') diff --git a/powerpc/Machregs.v b/powerpc/Machregs.v index fe209627..b56812e5 100644 --- a/powerpc/Machregs.v +++ b/powerpc/Machregs.v @@ -222,9 +222,10 @@ Definition builtin_constraints (ef: external_function) : if string_dec id "__builtin_get_spr" then OK_const :: nil else if string_dec id "__builtin_set_spr" then OK_const :: OK_default :: nil else if string_dec id "__builtin_prefetch" then OK_default :: OK_const :: OK_const :: nil - else if string_dec id "__builtin_dcbtls" then OK_default::OK_const::nil - else if string_dec id "__builtin_icbtls" then OK_default::OK_const::nil - else if string_dec id "__builtin_mbar" then OK_const::nil + else if string_dec id "__builtin_dcbtls" then OK_default :: OK_const :: nil + else if string_dec id "__builtin_icbtls" then OK_default :: OK_const :: nil + else if string_dec id "__builtin_mbar" then OK_const :: nil + else if string_dec id "__builtin_mr" then OK_const :: OK_const :: nil else nil | EF_vload _ => OK_addrany :: nil | EF_vstore _ => OK_addrany :: OK_default :: nil -- cgit