[llvm] r175609 - Use the attribute group reference instead of the attribute directly.
Bill Wendling
isanbard at gmail.com
Tue Feb 19 23:48:23 PST 2013
Author: void
Date: Wed Feb 20 01:48:23 2013
New Revision: 175609
URL: http://llvm.org/viewvc/llvm-project?rev=175609&view=rev
Log:
Use the attribute group reference instead of the attribute directly.
Modified:
llvm/trunk/test/Bindings/Ocaml/vmcore.ml
Modified: llvm/trunk/test/Bindings/Ocaml/vmcore.ml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bindings/Ocaml/vmcore.ml?rev=175609&r1=175608&r2=175609&view=diff
==============================================================================
--- llvm/trunk/test/Bindings/Ocaml/vmcore.ml (original)
+++ llvm/trunk/test/Bindings/Ocaml/vmcore.ml Wed Feb 20 01:48:23 2013
@@ -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;
More information about the llvm-commits
mailing list