Andrea Di Biagio | 5768bb8 | 2013-08-23 11:53:55 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llvm-dis | FileCheck %s |
| 2 | |
Paul Robinson | fe45fd0 | 2013-11-18 21:44:03 +0000 | [diff] [blame] | 3 | ; Check for the presence of attribute optnone in the disassembly. |
Andrea Di Biagio | 5768bb8 | 2013-08-23 11:53:55 +0000 | [diff] [blame] | 4 | |
| 5 | ; CHECK: @foo() #0 |
| 6 | define void @foo() #0 { |
| 7 | ret void |
| 8 | } |
| 9 | |
Paul Robinson | fe45fd0 | 2013-11-18 21:44:03 +0000 | [diff] [blame] | 10 | ; CHECK: attributes #0 = { noinline optnone } |
| 11 | attributes #0 = { optnone noinline } |
Andrea Di Biagio | 5768bb8 | 2013-08-23 11:53:55 +0000 | [diff] [blame] | 12 | |