1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Update LLVMC tests for r111620.

llvm-svn: 111621
This commit is contained in:
Benjamin Kramer 2010-08-20 13:03:33 +00:00
parent f0f98cc3de
commit d4dbba35a6
2 changed files with 4 additions and 4 deletions

View File

@ -18,9 +18,9 @@ def dummy_tool : Tool<[
(in_language "dummy"),
(out_language "dummy"),
(actions (case
// CHECK: HookA(AutoGeneratedParameter_a
// CHECK: HookA(autogenerated::Parameter_a
(not_empty "a"), (forward_transformed_value "a", "HookA"),
// CHECK: HookB(AutoGeneratedList_b
// CHECK: HookB(autogenerated::List_b
(not_empty "b"), (forward_transformed_value "b", "HookB")))
]>;

View File

@ -15,9 +15,9 @@ def dummy_tool : Tool<[
(in_language "dummy"),
(out_language "dummy"),
(actions (case
// CHECK: , AutoGeneratedParameter_a));
// CHECK: , autogenerated::Parameter_a));
(not_empty "a"), (forward_value "a"),
// CHECK: B = AutoGeneratedList_b.begin()
// CHECK: B = autogenerated::List_b.begin()
(not_empty "b"), (forward_value "b")))
]>;