The ARM disassembler did not handle the alignment correctly for VLD*DUP* instructions
[oota-llvm.git] / test / Assembler / 2008-09-02-FunctionNotes.ll
index ba886b1a01046b00bf9cda21e750965144680b9b..761c91e864c4c84eed6a5ea39f1cc99607ad56de 100644 (file)
@@ -1,11 +1,11 @@
-; Test function notes
+; Test function attributes
 ; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
 
-define void @fn1() notes(inline=always) {
+define void @fn1() alwaysinline {
   ret void
 }
 
-define void @fn2() notes(inline=never) {
+define void @fn2() noinline {
   ret void
 }