diff options
Diffstat (limited to 'test/Transforms/GlobalDCE/pr20981.ll')
-rw-r--r-- | test/Transforms/GlobalDCE/pr20981.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/GlobalDCE/pr20981.ll b/test/Transforms/GlobalDCE/pr20981.ll index 92d2840..0eaa6b8 100644 --- a/test/Transforms/GlobalDCE/pr20981.ll +++ b/test/Transforms/GlobalDCE/pr20981.ll @@ -6,10 +6,10 @@ $c1 = comdat any @a1 = linkonce_odr alias void ()* @f1 ; CHECK: @a1 = linkonce_odr alias void ()* @f1 -define linkonce_odr void @f1() comdat $c1 { +define linkonce_odr void @f1() comdat($c1) { ret void } -; CHECK: define linkonce_odr void @f1() comdat $c1 +; CHECK: define linkonce_odr void @f1() comdat($c1) define void @g() { call void @f1() |