diff options
Diffstat (limited to 'test/Transforms/Inline/pr21206.ll')
-rw-r--r-- | test/Transforms/Inline/pr21206.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/Inline/pr21206.ll b/test/Transforms/Inline/pr21206.ll index 1a4366e..e460030 100644 --- a/test/Transforms/Inline/pr21206.ll +++ b/test/Transforms/Inline/pr21206.ll @@ -3,15 +3,15 @@ $c = comdat any ; CHECK: $c = comdat any -define linkonce_odr void @foo() comdat $c { +define linkonce_odr void @foo() comdat($c) { ret void } -; CHECK: define linkonce_odr void @foo() comdat $c +; CHECK: define linkonce_odr void @foo() comdat($c) -define linkonce_odr void @bar() comdat $c { +define linkonce_odr void @bar() comdat($c) { ret void } -; CHECK: define linkonce_odr void @bar() comdat $c +; CHECK: define linkonce_odr void @bar() comdat($c) define void()* @zed() { ret void()* @foo |