From: Bill Wendling Date: Wed, 20 Feb 2013 07:48:23 +0000 (+0000) Subject: Use the attribute group reference instead of the attribute directly. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cdb88983d2bd935722fc8d6fca2beed86ad1f92;p=platform%2Fupstream%2Fllvm.git Use the attribute group reference instead of the attribute directly. llvm-svn: 175609 --- diff --git a/llvm/test/Bindings/Ocaml/vmcore.ml b/llvm/test/Bindings/Ocaml/vmcore.ml index 61be4b7..b49bab9 100644 --- a/llvm/test/Bindings/Ocaml/vmcore.ml +++ b/llvm/test/Bindings/Ocaml/vmcore.ml @@ -860,7 +860,8 @@ let test_builder () = group "function attribute"; begin ignore (add_function_attr fn Attribute.UWTable); - (* RUN: grep "X7.*uwtable" < %t.ll + (* RUN: grep "X7.*#0" < %t.ll + * RUN: grep "attributes #0 = .*uwtable.*" < %t.ll *) insist ([Attribute.UWTable] = function_attr fn); end;